blob: e6c2354198b49e5e49d8cfc47d88d9a28fb18be8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package server
import (
"github.com/containers/libpod/pkg/api/handlers"
"github.com/gorilla/mux"
)
func (s *APIServer) RegisterMonitorHandlers(r *mux.Router) error {
r.Handle(VersionedPath("/monitor"), APIHandler(s.Context, handlers.UnsupportedHandler))
return nil
}
|