mirror of
https://github.com/elyby/chrly.git
synced 2024-12-25 06:30:04 +05:30
17 lines
254 B
Go
17 lines
254 B
Go
package di
|
|
|
|
import "github.com/defval/di"
|
|
|
|
func New() (*di.Container, error) {
|
|
return di.New(
|
|
configDiOptions,
|
|
loggerDiOptions,
|
|
dbDeOptions,
|
|
mojangDiOptions,
|
|
handlersDiOptions,
|
|
profilesDiOptions,
|
|
serverDiOptions,
|
|
securityDiOptions,
|
|
)
|
|
}
|