`))
}
func main() {
http.HandleFunc("/", handler)
staticHandler := http.StripPrefix(
"/data/",
http.FileServer(http.Dir("./static")),
)
http.Handle("/data/", staticHandler)
fmt.Println("starting server at :8080")
http.ListenAndServe(":8080", nil)
}