feat:added auto job

This commit is contained in:
zhangwenjian
2020-08-06 22:30:57 +08:00
parent 328f7d4f4f
commit 54f48377f0
20 changed files with 671 additions and 123 deletions
+10 -8
View File
@@ -3,22 +3,24 @@ package config
import "github.com/spf13/viper"
type Logger struct {
Path string
Level string
Stdout bool
Path string
Level string
Stdout bool
EnabledBUS bool
EnabledREQ bool
EnabledDB bool
EnabledDB bool
EnabledJOB bool `default:"false"`
}
func InitLog(cfg *viper.Viper) *Logger {
return &Logger{
Path: cfg.GetString("path"),
Level: cfg.GetString("level"),
Stdout: cfg.GetBool("stdout"),
Path: cfg.GetString("path"),
Level: cfg.GetString("level"),
Stdout: cfg.GetBool("stdout"),
EnabledBUS: cfg.GetBool("enabledbus"),
EnabledREQ: cfg.GetBool("enabledreq"),
EnabledDB: cfg.GetBool("enableddb"),
EnabledDB: cfg.GetBool("enableddb"),
EnabledJOB: cfg.GetBool("enabledjob"),
}
}