summaryrefslogtreecommitdiff
path: root/pkg/api/server/register_plugins.go
blob: 479a79d1f62411ed7184d49ed0b07779601d7133 (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) registerPluginsHandlers(r *mux.Router) error {
	r.Handle(VersionedPath("/plugins"), s.APIHandler(handlers.UnsupportedHandler))
	return nil
}