golang 静态站点

package main

import (
        "net/http"
)

func main() {
        http.Handle("/", http.FileServer(http.Dir("./static")))
        http.ListenAndServe(":8080", nil)
}

golang 内置api 两行代码就可以实现一个静态站点。

你可能感兴趣的:(xcode,ios,macos)