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