Files
balancecluster/main.go

16 lines
190 B
Go
Raw Normal View History

2025-11-24 11:18:08 +08:00
package main
import (
"net/http"
"balance/handwork"
)
func main() {
if !handwork.Hand() {
return
}
http.HandleFunc("/test", handwork.Handback)
http.ListenAndServe(":8080", nil)
}