summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-20 05:08:52 -0600
committerJeff Carr <[email protected]>2025-01-20 05:08:52 -0600
commit4721184398013ac30160bc5bbde5244256f15d88 (patch)
tree618520cfed22daf36276205835bdc94e92f7ab94 /main.go
parentef1a3063527e17507af88c644ca1ef7851ab53b0 (diff)
attempt to embedded gocui plugin toolkitv0.22.58
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.go b/main.go
index 49dcb8d..73bab4b 100644
--- a/main.go
+++ b/main.go
@@ -3,6 +3,7 @@ package main
// An app to submit patches for the 30 GO GUI repos
import (
+ "embed"
"os"
"strings"
@@ -17,6 +18,11 @@ import (
var VERSION string
var BUILDTIME string
+// this optionally can store the GUI plugins
+//
+//go:embed resources/*
+var resources embed.FS
+
// used for shell auto completion
var ARGNAME string = "forge"