Files
gspt/config/flags.go
2023-04-15 09:01:21 +05:30

12 lines
181 B
Go

package config
import (
"flag"
)
func parseFlags() {
flag.StringVar(&ConfigPath, "c", ConfigPath,
"Specify The Directory where to check for config.yml file.")
flag.Parse()
}