From f45c8aa0cefdf34fcea0623512f9d9066313a73f Mon Sep 17 00:00:00 2001 From: konrad Date: Sat, 8 Sep 2018 13:31:13 +0200 Subject: [PATCH] Fixed lint --- models/config.go | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/models/config.go b/models/config.go index 22403660b8..8714d1db86 100644 --- a/models/config.go +++ b/models/config.go @@ -4,10 +4,10 @@ import ( "crypto/rand" "fmt" "github.com/spf13/viper" - "os" "strings" ) +// InitConfig initializes the config, sets defaults etc. func InitConfig() (err error) { // Set defaults @@ -52,35 +52,3 @@ func random(length int) (string, error) { return fmt.Sprintf("%X", b), nil } - -// SetConfig initianlises the config and publishes it for other functions to use -func SetConfig() (err error) { - - // File Checks - if _, err := os.Stat("config.ini"); os.IsNotExist(err) { - return err - } - - // Load the config - //cfg, err := ini.Load("config.ini") - if err != nil { - return err - } - - // Map the config to our struct - //err = cfg.MapTo(Config) - if err != nil { - return err - } - - // Set default value for interface to listen on - /*Config.Interface = cfg.Section("General").Key("Interface").String() - if Config.Interface == "" { - Config.Interface = ":8080" - } - - // JWT secret - Config.JWTLoginSecret = []byte(cfg.Section("General").Key("JWTSecret").String())*/ - - return nil -}