1
0
mirror of https://github.com/beego/bee.git synced 2025-06-12 10:00:41 +00:00

Merge branch 'develop' into fix-load-config

This commit is contained in:
Faissal Elamraoui
2017-03-16 21:35:44 +00:00
committed by GitHub
4 changed files with 65 additions and 5 deletions

View File

@ -35,8 +35,9 @@ var Conf = struct {
Envs []string
Bale bale
Database database
EnableReload bool `json:"enable_reload" yaml:"enable_reload"`
EnableNotification bool `json:"enable_notification" yaml:"enable_notification"`
EnableReload bool `json:"enable_reload" yaml:"enable_reload"`
EnableNotification bool `json:"enable_notification" yaml:"enable_notification"`
Scripts map[string]string `json:"scripts" yaml:"scripts"`
}{
GoInstall: true,
DirStruct: dirStruct{
@ -52,6 +53,7 @@ var Conf = struct {
Driver: "mysql",
},
EnableNotification: true,
Scripts: map[string]string{},
}
// gopm support