Files
panel/internal/bootstrap/bootstrap.go
T
2025-04-12 04:27:10 +08:00

7 lines
247 B
Go

package bootstrap
import "github.com/google/wire"
// ProviderSet is bootstrap providers.
var ProviderSet = wire.NewSet(NewConf, NewT, NewLog, NewCli, NewValidator, NewRouter, NewHttp, NewDB, NewMigrate, NewLoader, NewSession, NewCron, NewQueue)