Files
crowsnest/cmd/frontend/main.go
2025-01-02 15:48:55 +01:00

21 lines
410 B
Go

package main
import (
"crowsnest/internal/routes"
"net/http"
)
func main() {
// routes
http.HandleFunc("GET /", routes.Index)
http.HandleFunc("POST /up/search", routes.UpSearch)
// serve files from the "static" directory
fs := http.FileServer(http.Dir("assets/static"))
http.Handle("GET /static/", http.StripPrefix("/", fs))
// start server
http.ListenAndServe(":8080", nil)
}