diff --git a/main.go b/main.go index 71783c2..430391e 100644 --- a/main.go +++ b/main.go @@ -11,11 +11,11 @@ import ( func main() { http.HandleFunc("/", IPHandle) + log.Println("server start!") http.ListenAndServe(":8080", nil) } func IPHandle(w http.ResponseWriter, req *http.Request) { - log.Println("server start!") address := req.FormValue("address") var ipInfo ip2region.IpInfo if address != "" {