用Go实现 最简单实现 http文件服务器

使用go语言几行代码就实现了http文件服务器,不能再快了。https://download.csdn.net/my   package main import ( "fmt" "net/http" ) func main() { fmt.Println("hello。。。。") http.Handle("/", http.FileServer(http.Dir("."))) ht
相关文章
相关标签/搜索