Go中原生http服务的实现方式

Go中原生http服务的实现方式
  • 方式一
type Demo struct {
   
}

func (d *Demo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
   
	w.Write([

你可能感兴趣的:(go,golang)