http服务:
package main import ( "net/http" ) func main() { http.Handle("/",http.FileServer(http.Dir("./"))) http.ListenAndServe(":8290",nil) }
http服务:
package main import ( "net/http" ) func main() { http.Handle("/",http.FileServer(http.Dir("./"))) http.ListenAndServe(":8290",nil) }