mirror of
https://github.com/bestnite/sub2sing-box.git
synced 2025-07-02 08:42:33 +08: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)
|
|
}
|
|
}
|