http

 

2022-11-23

1
package main
2
3
import (
4
"net/http"
5
)
6
7
func main() {
8
// 以当前文件夹为工作目录
9
file := http.Dir(".")
10
// 指定监听端口和工作目录
11
http.ListenAndServe(":80", http.FileServer(file))
12
}