代码
package main
import "net/http"
func wsHandeler(w http.ResponseWriter, r *http.Request){
//
w.Write([]byte("hello"))
}
func main(){
http.HandleFunc("/ws",wsHandeler) // 当调用 ws 接口的时候 就会调用这个回调 函数 (放在外面 ,请求和应答 )
//启动服务端 http://localhost:7777
http.ListenAndServe("0.0.0.0:7777",nil)
}
网友评论