HelloWorld级的Http服务器

5年以前  |  阅读数:733 次  |  编程语言:Golang 
package main

import "net/http"

func hello(res http.ResponseWriter, req *http.Request) {
    res.Header().Set("Content-Type", "text/plain")
    res.Write([]byte("Hello web\n"))
}

func main() {
    http.HandleFunc("/", hello)
    http.ListenAndServe(":5000", nil)
}

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8