mirror of
https://github.com/elyby/chrly.git
synced 2025-01-09 13:27:49 +05:30
18 lines
215 B
Go
18 lines
215 B
Go
package di
|
|
|
|
import "github.com/defval/di"
|
|
|
|
func New() (*di.Container, error) {
|
|
return di.New(
|
|
config,
|
|
dispatcher,
|
|
logger,
|
|
db,
|
|
mojangTextures,
|
|
handlers,
|
|
profilesDi,
|
|
server,
|
|
securityDiOptions,
|
|
)
|
|
}
|