From 790c840f767695c0ebdff0cb8be7b7991274df18 Mon Sep 17 00:00:00 2001 From: Zeni Kim Date: Tue, 18 Mar 2025 20:14:52 -0500 Subject: [PATCH] split if --- core.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core.go b/core.go index 3c80602..cb31680 100644 --- a/core.go +++ b/core.go @@ -104,8 +104,8 @@ func (app *App) Run(router *httprouter.Router) { // check if template engine is enable TemplateEnableStr := os.Getenv("TEMPLATE_ENABLE") - if TemplateEnableStr == "" { - TemplateEnableStr = "false" + if "" == TemplateEnableStr { + TemplateEnableStr = 'false' } TemplateEnable, _ := strconv.ParseBool(TemplateEnableStr) // if enabled, @@ -119,7 +119,7 @@ func (app *App) Run(router *httprouter.Router) { } useHttps, _ := strconv.ParseBool(useHttpsStr) - if runMode == "dev" { + if "dev" == runMode { fmt.Printf("Welcome to Goffee\n") if useHttps { fmt.Printf("Listening on https \nWaiting for requests...\n")