Files
gothstarter/handlers/auth.go
2024-04-24 19:52:05 +02:00

11 lines
175 B
Go

package handlers
import (
"gothstarter/views/auth"
"net/http"
)
func HandleLoginIndex(w http.ResponseWriter, r *http.Request) error {
return Render(w, r, auth.Login())
}