summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-02-08 11:04:04 -0600
committerJeff Carr <[email protected]>2023-02-08 11:04:04 -0600
commit00082af773b80948418bc9eb471ab22498e80c75 (patch)
tree2ad62742aca1062e52b9c8908078fa0b4fefb39d /main.go
Initial Commit
Diffstat (limited to 'main.go')
-rw-r--r--main.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..c248501
--- /dev/null
+++ b/main.go
@@ -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)
+}