摘要: 备忘,有时候需要用 package main import ( "net/http" ) func main() { http.Handle("/", http.FileServer(http.Dir("."))) _ = http.ListenAndServe(":9999", nil) } 阅读全文
posted @ 2022-12-07 10:02 自由出土文物 阅读(22) 评论(0) 推荐(0) 编辑