기본 config 파일 수정

This commit is contained in:
2023-06-14 18:15:57 +09:00
parent 4ebf231bbe
commit 9b877d9a73

View File

@ -10,7 +10,7 @@ import (
var configfileflag = flag.String("config", "", "")
func configFilePath() string {
configfilepath := "./config_template.json"
configfilepath := "config.json"
if configfileflag != nil && len(*configfileflag) > 0 {
configfilepath = *configfileflag
}