blob: f76e464b23d6436b37bf36535d7798401e344095 [file] [log] [blame]
package main
import "net/http"
func main() {
http.Handle("/", http.StripPrefix("/static/", http.FileServer(http.Dir("./output"))))
http.ListenAndServe(":8000", nil)
}