fileServer.zip
大小:3.55MB
价格:30积分
下载量:0
评分:
5.0
上传者:weixin_45363959
更新日期:2024-08-06

最简单的基于GO的文件服务器

资源文件列表(大概)

文件名
大小
fileServer.exe
6.32MB
main.go
191B

资源内容介绍

最简单的基于GO的文件服务器
package mainimport ("fmt""net/http")func main() {http.Handle("/", http.FileServer(http.Dir("./")))fmt.Println("Start")e := http.ListenAndServe(":8080", nil)fmt.Println(e)}

用户评论 (0)

发表评论

captcha