12 lines
214 B
Go
12 lines
214 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"github.com/loveuer/nfflow/internal/opt"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
flag.StringVar(&opt.ConfigFile, "c", "etc/config.json", "config json file path")
|
||
|
flag.IntVar(&opt.Debug, "debug", 0, "")
|
||
|
}
|