美文网首页
gobyexample-static-content

gobyexample-static-content

作者: bocsoft | 来源:发表于2018-11-07 10:21 被阅读0次

    来源:https://github.com/xg-wang/gobyexample/tree/master/examples

    package main
    
    import "net/http"
    
    func main()  {
        handler := http.FileServer(http.Dir("./"))
        http.ListenAndServe(":9090",handler)//可以把项目目录当成WEB应用,通过http://localhost:9090/来访问
    }
    

    相关文章

      网友评论

          本文标题:gobyexample-static-content

          本文链接:https://www.haomeiwen.com/subject/lrpmxqtx.html