golang 靜態文件服務器

package mainimport

import (
    "net/http"
)List

func main() {
    http.Handle("/", http.FileServer(http.Dir("/your_path")))
    http.ListenAndServe(":9090", nil)
}
 im

相關文章
相關標籤/搜索