Files
pocket-id/backend/internal/appconfig/resolver.go
Alessandro (Ale) Segala 563c0f93a6 refactor: migrate LDAP sync to an actor (#1651)
Co-authored-by: Kyle Mendell <kmendell@ofkm.us>
2026-08-07 09:18:30 -07:00

11 lines
273 B
Go

package appconfig
import (
"context"
)
// AppConfigResolver loads the current application configuration, so handlers can pass it explicitly to the service methods that need it
type AppConfigResolver interface {
GetConfig(ctx context.Context) (*AppConfigModel, error)
}