mirror of
https://github.com/aditya-K2/gspt.git
synced 2026-01-09 13:58:05 -05:00
12 lines
181 B
Go
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()
|
|
}
|