15 lines
179 B
Go
15 lines
179 B
Go
|
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()
|
||
|
}
|