2024-01-01 15:27:59 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
/*
|
|
|
|
this enables command line options from other packages like 'gui' and 'log'
|
|
|
|
*/
|
|
|
|
|
2024-01-18 01:33:07 -06:00
|
|
|
import (
|
2024-01-01 15:27:59 -06:00
|
|
|
arg "github.com/alexflint/go-arg"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
arg.MustParse()
|
|
|
|
}
|