summaryrefslogtreecommitdiff
path: root/pkg/api/server/register_distribution.go
blob: cbb4476f37d1746b7953d63825ee1118f579137b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package server

import (
	"github.com/containers/podman/v3/pkg/api/handlers/compat"
	"github.com/gorilla/mux"
)

func (s *APIServer) registerDistributionHandlers(r *mux.Router) error {
	r.HandleFunc(VersionedPath("/distribution/{name}/json"), compat.UnsupportedHandler)
	// Added non version path to URI to support docker non versioned paths
	r.HandleFunc("/distribution/{name}/json", compat.UnsupportedHandler)
	return nil
}