diff --git a/config.go b/config.go index 40cee7c..087b638 100644 --- a/config.go +++ b/config.go @@ -31,7 +31,7 @@ type Config struct { func readConfig() Config { - file, _ := os.Open("config2.json") + file, _ := os.Open("config.json") conf := Config{} json.NewDecoder(file).Decode(&conf) file.Close()