用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
相關文章
相關標籤/搜索