mirror of
https://github.com/elyby/chrly.git
synced 2024-11-16 18:22:58 +05:30
15 lines
185 B
Go
15 lines
185 B
Go
package di
|
|
|
|
import (
|
|
"github.com/defval/di"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var config = di.Options(
|
|
di.Provide(newConfig),
|
|
)
|
|
|
|
func newConfig() *viper.Viper {
|
|
return viper.GetViper()
|
|
}
|