blob: f036622247066d75ef3d5e7f5e2489c049faea7e (
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
}
|