mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
11 lines
139 B
Go
11 lines
139 B
Go
package di
|
|
|
|
import (
|
|
"github.com/defval/di"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var configDiOptions = di.Options(
|
|
di.Provide(viper.GetViper),
|
|
)
|