mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 21:24:01 +03:00
FILE / ScuroNeko/mtg
internal/cli/cli.go
Исходный файл и его история в репозитории.
11 lines
366 B
Go
11 lines
366 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.'"`
|
|
Run Proxy `kong:"cmd,help='Run proxy.'"`
|
|
Version kong.VersionFlag `kong:"help='Print version.',short='v'"`
|
|
}
|