mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-09-01 00:04:02 +03:00
FILE / ScuroNeko/mtg
cli/cli.go
Исходный файл и его история в репозитории.
12 lines
310 B
Go
12 lines
310 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/alecthomas/kong"
|
|
)
|
|
|
|
type CLI struct {
|
|
GenerateSecret GenerateSecret `cmd help:"Generate new proxy secret"` // nolint: govet
|
|
Access Access `cmd help:"Print access information."` // nolint: govet
|
|
Version kong.VersionFlag `help:"Print version."`
|
|
}
|