mirror of
https://github.com/Neur0toxine/demo-web-service-go.git
synced 2024-12-05 02:56:03 +03:00
11 lines
174 B
Go
11 lines
174 B
Go
|
package cmd
|
||
|
|
||
|
import "github.com/jessevdk/go-flags"
|
||
|
|
||
|
// Parser will parse command line
|
||
|
var Parser *flags.Parser
|
||
|
|
||
|
func init() {
|
||
|
Parser = flags.NewParser(nil, flags.Default)
|
||
|
}
|