package main import "net/http" func main() { fs := http.FileServer(http.Dir("./static")) http.Handle("GET /", fs) http.ListenAndServe(":3000", nil) }