Files
gohttpserver/httpserver/handlelogin.go
sneak d3e6e7fd32
All checks were successful
continuous-integration/drone/push Build is passing
rename misnamed file (handleadmin->handlelogin)
2020-09-30 01:32:28 -07:00

13 lines
193 B
Go

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