gohttpserver/internal/handlers/handlelogin.go

13 lines
193 B
Go
Raw Normal View History

2022-11-28 03:59:20 +00:00
package handlers
2020-09-30 07:48:56 +00:00
import (
"fmt"
"net/http"
)
2022-11-28 03:59:20 +00:00
func (s *Handlers) HandleLogin() http.HandlerFunc {
2020-09-30 07:48:56 +00:00
return func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello login")
}
}