Removed print

This commit is contained in:
Ruben Cid
2020-04-14 14:17:50 +02:00
parent 7d11f594a3
commit 4a68263061

View File

@@ -3,7 +3,6 @@ package configure
import (
"bytes"
"encoding/json"
"fmt"
"strings"
"github.com/kr/pretty"
@@ -130,7 +129,6 @@ func LoadConfig() {
func CheckAppName(appname string) bool {
apps := Applications{}
Config.UnmarshalKey("server", &apps)
fmt.Println(apps)
for _, app := range apps {
if app.Appname == appname {
return app.Live