26 lines
547 B
Go
26 lines
547 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/rs/zerolog"
|
||
|
|
||
|
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/config"
|
||
|
"gitea.libretechconsulting.com/rmcguire/go-app/pkg/logging"
|
||
|
)
|
||
|
|
||
|
// Helper function to return a context loaded up with
|
||
|
// config.AppConfig and a logger
|
||
|
func MustSetupConfigAndLogging(ctx context.Context) context.Context {
|
||
|
ctx, err := config.LoadConfig(ctx)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
cfg := config.MustFromCtx(ctx)
|
||
|
ctx = logging.MustInitLogging(ctx)
|
||
|
|
||
|
zerolog.Ctx(ctx).Trace().Any("config", *cfg).Send()
|
||
|
return ctx
|
||
|
}
|