mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-10 17:47:52 +00:00
We missed bumping the go module, so let's do it now :) * Automated go code with github.com/sirkon/go-imports-rename * Manually via `vgrep podman/v2` the rest Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
35 lines
971 B
Go
35 lines
971 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/containers/podman/v3/pkg/api/handlers/compat"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (s *APIServer) registerVersionHandlers(r *mux.Router) error {
|
|
// swagger:operation GET /version compat CompatSystemVersion
|
|
// ---
|
|
// summary: Component Version information
|
|
// tags:
|
|
// - system (compat)
|
|
// produces:
|
|
// - application/json
|
|
// responses:
|
|
// 200:
|
|
// $ref: "#/responses/Version"
|
|
r.Handle("/version", s.APIHandler(compat.VersionHandler)).Methods(http.MethodGet)
|
|
r.Handle(VersionedPath("/version"), s.APIHandler(compat.VersionHandler)).Methods(http.MethodGet)
|
|
// swagger:operation GET /libpod/version libpod SystemVersion
|
|
// ---
|
|
// summary: Component Version information
|
|
// tags:
|
|
// - system
|
|
// produces:
|
|
// - application/json
|
|
// responses:
|
|
// 200:
|
|
// $ref: "#/responses/Version"
|
|
r.Handle(VersionedPath("/libpod/version"), s.APIHandler(compat.VersionHandler)).Methods(http.MethodGet)
|
|
return nil
|
|
}
|