blob: f61b9c5edf711f604cdcef143abe0e3265e446d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package argvpb
// these are things I'm not sure about doing
// or haven't figured out what to do with
// or are generally part of idiocracy
// this is sill in development
// figure out how to trigger this
var argBash ArgsBash
type ArgsBash struct {
Bash bool `arg:"--bash" help:"generate bash completion"`
}
// returns the name of the executable registered for shell autocomplete
func AppName() string {
return me.ARGNAME
}
|