FILE / ScuroNeko/mtg

internal/cli/cli.go

Исходный файл и его история в репозитории.
FILE 30666723537907bec403367a4864ae0bdf5f36ab
Files
mtg/internal/cli/cli.go
T
2021-07-30 16:15:36 +03:00

12 lines
450 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 Run `kong:"cmd,help='Run proxy.'"`
SimpleRun SimpleRun `kong:"cmd,help='Run proxy without config file.'"`
Version kong.VersionFlag `kong:"help='Print version.',short='v'"`
}