This commit is contained in:
anthdm
2024-04-24 19:52:05 +02:00
commit af9c83cbd0
31 changed files with 1515 additions and 0 deletions

10
handlers/home.go Normal file
View File

@@ -0,0 +1,10 @@
package handlers
import (
"gothstarter/views/home"
"net/http"
)
func HandleHome(w http.ResponseWriter, r *http.Request) error {
return Render(w, r, home.Index())
}