// Package deps records the locked set of direct dependencies for the lethe // server during early scaffolding. Real packages adopt these as they come // online (server — chi/prometheus; auth — go-oidc; observability — // auxilia/scribe; lifecycle — auxilia/steward). // // Phase 2 promoted viper, validator/v10, and culpa to real imports under // internal/config. Phase 3 promoted sqlx, modernc.org/sqlite, and // golang-migrate/v4 (plus its sqlite driver and iofs source) to real imports // under internal/platform/database, and culpa is now used there too. Once // every dep below has at least one real importer, this file is expected to // disappear in the same commit that completes the migration. package deps import ( _ "github.com/coreos/go-oidc/v3/oidc" _ "github.com/go-chi/chi/v5" _ "github.com/prometheus/client_golang/prometheus" _ "go.bigb.es/auxilia/scribe" _ "go.bigb.es/auxilia/steward" )