summaryrefslogtreecommitdiff
path: root/pkg/api/server/register_plugins.go
blob: 7fd6b9c4c90412375b2a0df463c7aaf195107a48 (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"), APIHandler(s.Context, handlers.UnsupportedHandler))
	return nil
}