Files
proxy/cmd/client/main.go

11 lines
126 B
Go
Raw Normal View History

package main
2025-02-25 18:08:57 +08:00
import "proxy-server/client"
func main() {
err := client.Start()
if err != nil {
println(err.Error())
}
}