mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-11 01:23:01 +00:00
18 lines
337 B
Go
18 lines
337 B
Go
|
package convert
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/main/commands/base"
|
||
|
)
|
||
|
|
||
|
// CmdConvert do config convertion
|
||
|
var CmdConvert = &base.Command{
|
||
|
UsageLine: "{{.Exec}} convert",
|
||
|
Short: "Convert configs",
|
||
|
Long: `{{.Exec}} {{.LongName}} provides tools to convert config.
|
||
|
`,
|
||
|
Commands: []*base.Command{
|
||
|
cmdProtobuf,
|
||
|
cmdJson,
|
||
|
},
|
||
|
}
|