overflow_commons_go/config/config.go
crusader b31928934d ing
2018-03-21 00:17:41 +09:00

13 lines
235 B
Go

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")
}