Files
MWClash/core/main.go

18 lines
181 B
Go
Raw Normal View History

//go:build !cgo
2024-04-30 23:38:49 +08:00
package main
import (
"fmt"
"os"
2024-04-30 23:38:49 +08:00
)
func main() {
args := os.Args
if len(args) <= 1 {
fmt.Println("Arguments error")
os.Exit(1)
}
startServer(args[1])
2024-04-30 23:38:49 +08:00
}