This commit is contained in:
crusader 2018-03-21 18:39:50 +09:00
parent 3d2fd3d24e
commit 1f4e7faac2

View File

@ -8,14 +8,14 @@ const (
FlagPidFilePathName = "pid-path"
)
func FlagConfigDir() *string {
return flag.String(FlagConfigDirName, "./config.json", "The directory path of config")
func FlagConfigDir(defaultValue string) *string {
return flag.String(FlagConfigDirName, defaultValue, "The directory path of config")
}
func FlagLogConfigFilePath() *string {
return flag.String(FlagLogConfigFilePathName, "", "The file path of logging config")
func FlagLogConfigFilePath(defaultValue string) *string {
return flag.String(FlagLogConfigFilePathName, defaultValue, "The file path of logging config")
}
func FlagPidFilePath() *string {
return flag.String(FlagPidFilePathName, "./pid.pid", "The file path of pid")
func FlagPidFilePath(defaultValue string) *string {
return flag.String(FlagPidFilePathName, defaultValue, "The file path of pid")
}