面试题答案
一键面试package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/hello", func(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
fmt.Fprintf(w, "欢迎访问!")
}
})
fmt.Println("Server is running on http://localhost:8080")
http.ListenAndServe(":8080", nil)
}