summaryrefslogtreecommitdiff
path: root/pkg/api/server/register_distribution.go
blob: 23820b4a7fb5456ab305220016ae2419fe663070 (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) RegisterDistributionHandlers(r *mux.Router) error {
	r.HandleFunc(VersionedPath("/distribution/{name:..*}/json"), handlers.UnsupportedHandler)
	return nil
}