Fix: stupid llm
This commit is contained in:
@ -5,7 +5,11 @@ import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func HandlePing(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("pong"))
|
||||
}
|
||||
|
||||
func HandleHome(w http.ResponseWriter, r *http.Request) {
|
||||
tmpl := template.Must(template.ParseFiles("templates/public/index.html"))
|
||||
tmpl := template.Must(template.ParseFiles("components/index.html"))
|
||||
tmpl.Execute(w, nil)
|
||||
}
|
||||
|
Reference in New Issue
Block a user