29 lines
645 B
Go
29 lines
645 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/containers/libpod/pkg/api/handlers/generic"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (s *APIServer) registerInfoHandlers(r *mux.Router) error {
|
|
// swagger:operation GET /info libpod getInfo
|
|
//
|
|
// Returns information on the system and libpod configuration
|
|
//
|
|
// ---
|
|
// produces:
|
|
// - application/json
|
|
// responses:
|
|
// '200':
|
|
// schema:
|
|
// "$ref": "#/types/Info"
|
|
// '500':
|
|
// description: unexpected error
|
|
// schema:
|
|
// "$ref": "#/types/ErrorModel"
|
|
r.Handle(VersionedPath("/info"), APIHandler(s.Context, generic.GetInfo)).Methods(http.MethodGet)
|
|
return nil
|
|
}
|