package config import "flag" const ( LogConfigFilePathParamName = "log-config-path" PidFilePathParamName = "pid-path" ) func FlagConfigDir() *string { return flag.String("config-dir", ".", "The directory path of config") }