mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
18 lines
276 B
Go
18 lines
276 B
Go
package di
|
|
|
|
import "github.com/defval/di"
|
|
|
|
func New() (*di.Container, error) {
|
|
return di.New(
|
|
configDiOptions,
|
|
contextDiOptions,
|
|
dbDiOptions,
|
|
handlersDiOptions,
|
|
httpClientDiOptions,
|
|
loggerDiOptions,
|
|
mojangDiOptions,
|
|
profilesDiOptions,
|
|
serverDiOptions,
|
|
)
|
|
}
|