Files
crowsnest/cmd/crowsnest-frontend/main.go
2024-12-27 03:25:44 +01:00

31 lines
581 B
Go

package main
import (
"fmt"
"net/http"
"crowsnest-frontend/internal/model"
)
func test(w http.ResponseWriter, req *http.Request) {
for name, headers := range req.Header {
for _, h := range headers {
fmt.Fprintf(w, "%v: %v\n", name, h)
}
}
}
func main() {
http.HandleFunc("/test", test)
// Serve files from the "static" directory
fs := http.FileServer(http.Dir("./static"))
http.Handle("/", http.StripPrefix("/", fs))
a := &model.Article{}
fmt.Println(a.Hash())
//http.ListenAndServe(":8090", nil)
}