Move cli to internal

This commit is contained in:
9seconds
2021-04-02 21:36:15 +03:00
parent 24fdec6694
commit ea7033d569
11 changed files with 2 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
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'"`
}