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

weixin_45363959ZIPfileServer.zip  3.55MB

资源文件列表:

ZIP 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