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