1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //go:build wireinject
- // +build wireinject
- package wire
- import (
- "github.com/go-nunu/nunu-layout-advanced/internal/repository"
- "github.com/go-nunu/nunu-layout-advanced/internal/server"
- "github.com/go-nunu/nunu-layout-advanced/pkg/app"
- "github.com/go-nunu/nunu-layout-advanced/pkg/log"
- "github.com/google/wire"
- "github.com/spf13/viper"
- )
- var repositorySet = wire.NewSet(
- repository.NewDB,
- //repository.NewRedis,
- repository.NewRepository,
- repository.NewUserRepository,
- )
- var serverSet = wire.NewSet(
- server.NewMigrateServer,
- )
- // build App
- func newApp(
- migrateServer *server.MigrateServer,
- ) *app.App {
- return app.NewApp(
- app.WithServer(migrateServer),
- app.WithName("demo-migrate"),
- )
- }
- func NewWire(*viper.Viper, *log.Logger) (*app.App, func(), error) {
- panic(wire.Build(
- repositorySet,
- serverSet,
- newApp,
- ))
- }
|