chrly/internal/di/di.go

18 lines
276 B
Go
Raw Normal View History

2020-04-16 19:42:38 +03:00
package di
2023-12-13 17:29:12 +01:00
import "github.com/defval/di"
2020-04-16 19:42:38 +03:00
func New() (*di.Container, error) {
return di.New(
configDiOptions,
2024-02-14 00:56:48 +01:00
contextDiOptions,
dbDiOptions,
handlersDiOptions,
2024-02-19 13:54:12 +01:00
httpClientDiOptions,
loggerDiOptions,
mojangDiOptions,
profilesDiOptions,
2024-02-14 00:56:48 +01:00
serverDiOptions,
2020-04-16 19:42:38 +03:00
)
}