split if
This commit is contained in:
parent
a71b3697b6
commit
790c840f76
1 changed files with 3 additions and 3 deletions
6
core.go
6
core.go
|
@ -104,8 +104,8 @@ func (app *App) Run(router *httprouter.Router) {
|
||||||
|
|
||||||
// check if template engine is enable
|
// check if template engine is enable
|
||||||
TemplateEnableStr := os.Getenv("TEMPLATE_ENABLE")
|
TemplateEnableStr := os.Getenv("TEMPLATE_ENABLE")
|
||||||
if TemplateEnableStr == "" {
|
if "" == TemplateEnableStr {
|
||||||
TemplateEnableStr = "false"
|
TemplateEnableStr = 'false'
|
||||||
}
|
}
|
||||||
TemplateEnable, _ := strconv.ParseBool(TemplateEnableStr)
|
TemplateEnable, _ := strconv.ParseBool(TemplateEnableStr)
|
||||||
// if enabled,
|
// if enabled,
|
||||||
|
@ -119,7 +119,7 @@ func (app *App) Run(router *httprouter.Router) {
|
||||||
}
|
}
|
||||||
useHttps, _ := strconv.ParseBool(useHttpsStr)
|
useHttps, _ := strconv.ParseBool(useHttpsStr)
|
||||||
|
|
||||||
if runMode == "dev" {
|
if "dev" == runMode {
|
||||||
fmt.Printf("Welcome to Goffee\n")
|
fmt.Printf("Welcome to Goffee\n")
|
||||||
if useHttps {
|
if useHttps {
|
||||||
fmt.Printf("Listening on https \nWaiting for requests...\n")
|
fmt.Printf("Listening on https \nWaiting for requests...\n")
|
||||||
|
|
Loading…
Reference in a new issue