summaryrefslogtreecommitdiff
path: root/argv.go
blob: 32d29cdea7ce5bf98fb4a016ad44430acba0b8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 {
}