summaryrefslogtreecommitdiff
path: root/argv.struct.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 05:36:56 -0500
committerJeff Carr <[email protected]>2025-10-19 05:36:56 -0500
commitb28cd1762a2601b6acb082ac54c62aef166a5758 (patch)
tree96c2e9f3c828d9c7c542c0ac90bf02eff967ac0d /argv.struct.go
parentcc92f94457a1aa7e487bbeb293b1822000be302d (diff)
new argvv0.0.28
Diffstat (limited to 'argv.struct.go')
-rw-r--r--argv.struct.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/argv.struct.go b/argv.struct.go
new file mode 100644
index 0000000..e27a513
--- /dev/null
+++ b/argv.struct.go
@@ -0,0 +1,30 @@
+// 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 {
+ Incoming *IncomingCmd `arg:"subcommand:incoming" help:"handle the incoming directory"`
+ List *EmptyCmd `arg:"subcommand:list" help:"show the packages"`
+ Verify *EmptyCmd `arg:"subcommand:verify" help:"verify the pb is accurate and doesn't have errors"`
+ Newest *EmptyCmd `arg:"subcommand:newest" help:"make a list of the newest .deb packages"`
+ SignRelease *EmptyCmd `arg:"subcommand:release" help:"make & GPG sign the Release files"`
+ Everything *EmptyCmd `arg:"subcommand:everything" help:"do the whole thing needed. nothing more. just everything."`
+ Walk *WalkCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"`
+ 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 {
+}
+
+type WalkCmd struct {
+ Verbose bool `arg:"--verbose" help:"be loud about it"`
+}
+
+type IncomingCmd struct {
+ Force bool `arg:"--force" help:"rebuild everything"`
+}