首页下载资源操作系统最简单的基于GO的文件服务器

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

weixin_453639593.55MB需要积分:1

资源文件列表:

fileServer.zip 大约有2个文件
  1. fileServer.exe 6.32MB
  2. main.go 191B

资源介绍:

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