summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-29 14:15:18 -0500
committerJeff Carr <[email protected]>2025-10-29 14:15:18 -0500
commit7d57129d8530d6a8393fc7b8060ad02aaf028cea (patch)
treef5f58221611164929e9e83383a935675ac03dd12 /argv.go
parent6925e1ccb0d75a0518992d210e5dcf8a4e1a386f (diff)
puts .so files in /usr/lib/pluginsHEADv0.22.120v0.22.119masterdevel
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/argv.go b/argv.go
new file mode 100644
index 0000000..32d29cd
--- /dev/null
+++ b/argv.go
@@ -0,0 +1,16 @@
+// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
+// Use of this source code is governed by the GPL 3.0
+
+package main
+
+var argv args
+
+type args struct {
+ Rebuild *EmptyCmd `arg:"subcommand:rebuild" help:"rebuild the GO GUI plugins"`
+ DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
+ Verbose bool `arg:"--verbose" help:"be loud about it"`
+ Force bool `arg:"--force" help:"rebuild everything"`
+}
+
+type EmptyCmd struct {
+}