网上看到的,记录下,备用
package main import ( "net/http" ) func main() { http.Handle("/", http.FileServer(http.Dir("./"))) http.ListenAndServe(":8080", nil) }
golang的最简单的文件浏览web服务器,布布扣,bubuko.com
时间: 2024-10-12 15:35:37
网上看到的,记录下,备用
package main import ( "net/http" ) func main() { http.Handle("/", http.FileServer(http.Dir("./"))) http.ListenAndServe(":8080", nil) }
golang的最简单的文件浏览web服务器,布布扣,bubuko.com