mirror of
https://github.com/kevin-DL/gothstarter.git
synced 2026-01-11 10:04:34 +00:00
11 lines
175 B
Go
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())
|
|
}
|