Migrated project to use golang.

This commit is contained in:
2026-04-14 08:08:54 +02:00
parent 44fb025c81
commit dbf7858afd
18 changed files with 762 additions and 906 deletions
+12
View File
@@ -0,0 +1,12 @@
package handlers
import "net/http"
type HomeData struct {
Title string
}
func Home(w http.ResponseWriter, r *http.Request) {
data := HomeData{Title: "Home"}
view(w, r, "home", data)
}