From 337add61d45b558fe11765342b7498a86d5834df Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 26 Oct 2025 10:30:18 -0500 Subject: argv finally doesn't suck --- argv.struct.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 argv.struct.go (limited to 'argv.struct.go') diff --git a/argv.struct.go b/argv.struct.go deleted file mode 100644 index e27a513..0000000 --- a/argv.struct.go +++ /dev/null @@ -1,30 +0,0 @@ -// 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"` -} -- cgit v1.2.3