dm
/
vain
forked from sm/vain
1
0
Fork 0

stubbed out supported methods on /

This commit is contained in:
Stephen McQuay 2016-02-11 12:12:13 -08:00
parent 158ef57b13
commit c1b5f61b64
1 changed files with 16 additions and 6 deletions

View File

@ -1,15 +1,25 @@
package vain
import "net/http"
import (
"fmt"
"net/http"
)
type Server struct {
}
func NewServer(sm *http.ServeMux) *Server {
s := &Server{}
addRoutes(sm, s)
return s
func (s *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
switch req.Method {
case "GET":
case "POST":
case "PATCH":
default:
http.Error(w, fmt.Sprintf("unsupported method %q; accepted: POST, GET, PATCH", req.Method), http.StatusMethodNotAllowed)
}
}
func addRoutes(sm *http.ServeMux, s *Server) {
func NewServer(sm *http.ServeMux) *Server {
s := &Server{}
sm.Handle("/", s)
return s
}