rename misnamed file (handleadmin->handlelogin)
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-09-30 01:32:28 -07:00
parent b1df41ef17
commit d3e6e7fd32

12
httpserver/handlelogin.go Normal file
View File

@@ -0,0 +1,12 @@
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")
}
}