diff options
| author | Jeff Carr <[email protected]> | 2023-02-08 11:04:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-02-08 11:04:04 -0600 |
| commit | 00082af773b80948418bc9eb471ab22498e80c75 (patch) | |
| tree | 2ad62742aca1062e52b9c8908078fa0b4fefb39d /main.go | |
Initial Commit
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +// This creates a simple hello world window +package main + +import ( + "log" + "git.wit.org/wit/gui" + arg "github.com/alexflint/go-arg" +) + +func main() { + arg.MustParse(&args) + // fmt.Println(args.Foo, args.Bar, args.User) + log.Println("Toolkit = ", args.Toolkit) + + // gui.InitPlugins([]string{"andlabs"}) + gui.Main(initGUI) +} |
