~bigbes/lethe

ref: 4ca03bead630f9c1027dfbee5b6b8c75314f9498 lethe/internal/deps/deps.go -rw-r--r-- 900 bytes
4ca03bea — Eugene Blikh feat: bootstrap lethe server skeleton + wire contract a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Package deps records the locked set of direct dependencies for the lethe
// server during early scaffolding (Phase 1). Real packages adopt these as
// they come online (config — viper/validator; server — chi/prometheus;
// database — sqlx/modernc.org/sqlite/golang-migrate; auth — go-oidc;
// platform — auxilia steward/culpa/scribe).
//
// 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/go-playground/validator/v10"
	_ "github.com/golang-migrate/migrate/v4"
	_ "github.com/jmoiron/sqlx"
	_ "github.com/prometheus/client_golang/prometheus"
	_ "github.com/spf13/viper"
	_ "go.bigb.es/auxilia/culpa"
	_ "go.bigb.es/auxilia/scribe"
	_ "go.bigb.es/auxilia/steward"
	_ "modernc.org/sqlite"
)