Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

cli.go 450B

1234567891011
  1. package cli
  2. import "github.com/alecthomas/kong"
  3. type CLI struct {
  4. GenerateSecret GenerateSecret `kong:"cmd,help='Generate new proxy secret'"`
  5. Access Access `kong:"cmd,help='Print access information.'"`
  6. Run Run `kong:"cmd,help='Run proxy.'"`
  7. SimpleRun SimpleRun `kong:"cmd,help='Run proxy without config file.'"`
  8. Version kong.VersionFlag `kong:"help='Print version.',short='v'"`
  9. }