Fix build errors

This commit is contained in:
Michael Crosby 2015-11-05 15:49:13 -08:00
parent 15a96783ca
commit 05683fb0ee
7 changed files with 176 additions and 39 deletions

View file

@ -25,8 +25,8 @@ type server struct {
supervisor *containerd.Supervisor
}
func (s *server) HandleHTTP(w http.ResponseWriter, r *http.Request) {
s.r.HandleHTTP(w, r)
func (s *server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
s.r.ServeHTTP(w, r)
}
func (s *server) containers(w http.ResponseWriter, r *http.Request) {