Files
go-admin/tools/config/log.go
T
2020-04-18 10:06:44 +08:00

16 lines
194 B
Go

package config
import "github.com/spf13/viper"
type Log struct {
Dir string
}
func InitLog(cfg *viper.Viper) *Log {
return &Log{
Dir: cfg.GetString("dir"),
}
}
var LogConfig = new(Log)