blob: ad6f17dfbc7fe13659a0fd25cf5c2054435781fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package main
/*
this enables command line options from other packages like 'gui' and 'log'
*/
import (
arg "github.com/alexflint/go-arg"
)
func init() {
arg.MustParse()
}
|