mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 15:04:41 -05:00
13 lines
138 B
Go
13 lines
138 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"sub2sing-box/cmd"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.RootCmd.Execute(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|