http服务:
package main import ( "net/http" ) func main() { http.Handle("/",http.FileServer(http.Dir("./"))) http.ListenAndServe(":8290",nil) }原文链接:https://www.f2er.com/go/189364.html
http服务:
package main import ( "net/http" ) func main() { http.Handle("/",http.FileServer(http.Dir("./"))) http.ListenAndServe(":8290",nil) }原文链接:https://www.f2er.com/go/189364.html