-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwire_gen.go
34 lines (28 loc) · 998 Bytes
/
wire_gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Code generated by Wire. DO NOT EDIT.
//go:generate go run github.com/google/wire/cmd/wire
//go:build !wireinject
// +build !wireinject
package main
import (
"database/sql"
"github.com/JY8752/go-unittest-architecture/controller"
"github.com/JY8752/go-unittest-architecture/domain"
"github.com/JY8752/go-unittest-architecture/infrastructure/api"
"github.com/JY8752/go-unittest-architecture/infrastructure/handler"
"github.com/JY8752/go-unittest-architecture/infrastructure/repository"
"github.com/labstack/echo/v4"
)
import (
_ "github.com/go-sql-driver/mysql"
)
// Injectors from wire.go:
func InitializeRootHandler(db *sql.DB, e *echo.Echo) *handler.Root {
gacha := repository.NewGacha(db)
item := repository.NewItem(db)
seedGenerator := domain.NewSeedGenerator()
payment := api.NewPayment()
controllerGacha := controller.NewGacha(gacha, item, seedGenerator, payment)
handlerGacha := handler.NewGacha(e, controllerGacha)
root := handler.NewRoot(handlerGacha)
return root
}