wit-new-machine/args.go

11 lines
139 B
Go
Raw Normal View History

2023-04-12 12:21:23 -05:00
// This creates a simple hello world window
package main
import (
arg "github.com/alexflint/go-arg"
)
func init() {
arg.MustParse()
2023-04-12 12:21:23 -05:00
}