Skip to content

Commit

Permalink
Add back SecretsKeeper (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alva8756 authored Jan 29, 2024
1 parent c5d78b4 commit 5a0d102
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,12 @@ func serve(ctx context.Context) {
}

hs := &httpsrv.Server{
Logger: logger.Desugar(),
Listen: viper.GetString("listen"),
Debug: config.AppConfig.Logging.Debug,
DB: db,
AuthConfigs: authCfgs,
Logger: logger.Desugar(),
Listen: viper.GetString("listen"),
Debug: config.AppConfig.Logging.Debug,
DB: db,
SecretsKeeper: keeper,
AuthConfigs: authCfgs,
}

// init event stream - for now, only when nats.url is specified
Expand Down

0 comments on commit 5a0d102

Please sign in to comment.