diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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" |
