gohttpserver/internal/server/handlelogin.go

13 lines
189 B
Go
Raw Normal View History

package server
2020-09-30 07:48:56 +00:00
import (
"fmt"
"net/http"
)
func (s *server) handleLogin() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello login")
}
}