Fit skeleton
This commit is contained in:
13
grow/fit/main.go
Normal file
13
grow/fit/main.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package main
|
||||
|
||||
import "flag"
|
||||
import "log"
|
||||
|
||||
func main() {
|
||||
confPath := flag.String("conf-path", "", "path to config YAML file")
|
||||
flag.Parse()
|
||||
|
||||
if *confPath == "" {
|
||||
log.Fatal("Please specify --conf-path")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user