mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 20:44:02 +03:00
FILE / ScuroNeko/mtg
cli/cli.go
Исходный файл и его история в репозитории.
10 lines
302 B
Go
10 lines
302 B
Go
package cli
|
|
|
|
import "github.com/alecthomas/kong"
|
|
|
|
type CLI struct {
|
|
GenerateSecret GenerateSecret `kong:"cmd,help='Generate new proxy secret'"`
|
|
Access Access `kong:"cmd,help='Print access information.'"`
|
|
Version kong.VersionFlag `kong:"help='Print version.',short='v'"`
|
|
}
|