main.go 204 B

1234567891011
  1. package main
  2. import (
  3. _ "github.com/v2fly/v2ray-core/v4/commands/all"
  4. "github.com/v2fly/v2ray-core/v4/commands/base"
  5. )
  6. func main() {
  7. base.RootCommand.Long = "A tool set for V2Ray."
  8. base.Execute()
  9. }