summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-20 07:58:50 -0600
committerJeff Carr <[email protected]>2025-01-20 07:58:50 -0600
commit0482931c9256888d8f3b4e078cbef390a879830c (patch)
tree87da6e3efc8579df80746492507c47ae38e753e0
parent5005edc9e37cb207f6c6035ea6fe3c3d98d94caa (diff)
stub in an option to provide a filev0.22.23
-rw-r--r--argv.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/argv.go b/argv.go
index 7d687e8..32e2cc8 100644
--- a/argv.go
+++ b/argv.go
@@ -13,6 +13,7 @@ are the generic default command line arguments for the 'GUI' package
type ArgsGui struct {
NoGui bool `arg:"--no-gui" help:"ignore all these gui problems"`
GuiPlugin string `arg:"--gui" help:"Use this gui toolkit [andlabs,gocui,nocui,stdin]"`
+ GuiFile string `arg:"--gui-file" help:"Use a specific plugin.so file"`
GuiVerbose bool `arg:"--gui-verbose" help:"enable all logging"`
}