Files
gohttpserver/internal/server/handlelogin.go
Jeffrey Paul 61228b4586
Some checks failed
continuous-integration/drone/push Build is failing
embed static files now (#14)
Co-authored-by: sneak <sneak@sneak.berlin>
Reviewed-on: #14
2022-11-28 00:19:47 +00:00

13 lines
189 B
Go

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