blob: 6cedc8f580c970592f64216745d39bf5c7ad018f (
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()
}
|