gohttpserver/internal/handlers/handlelogin.go
sneak 75442d261d
Some checks failed
continuous-integration/drone/push Build is failing
this is nowhere near working yet
2022-11-28 04:59:20 +01:00

13 lines
193 B
Go

package handlers
import (
"fmt"
"net/http"
)
func (s *Handlers) HandleLogin() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello login")
}
}