SimpleHttpServer
Example
package main
import (
"fmt"
"net/http"
"log"
)
func main() {
http.HandleFunc("/", func (w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Welcome to my website!")
})
fs := http.FileServer(http.Dir("static/"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
log.Fatalln(http.ListenAndServe(":80", nil))
}