~bigbes/lethe

ref: 3c45b48bd5d0d99f76d2063504adaa7b312b85bc lethe/internal/deps/deps.go -rw-r--r-- 939 bytes
3c45b48b — Eugene Blikh feat(http): chi server with middleware stack + RFC 7807 problem renderer a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Package deps records the locked set of direct dependencies for the lethe
// server during early scaffolding. Real packages adopt these as they come
// online (auth — go-oidc).
//
// 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. Phase 4
// promoted prometheus/client_golang and auxilia/scribe (under
// internal/platform/observability) and auxilia/steward (canary test under
// internal/platform/health) to real imports. Phase 5 promoted chi/v5 to a
// real import under internal/server. 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"
)