summaryrefslogtreecommitdiff
path: root/pkg/api/handlers/libpod/info.go
blob: 9cdc08597287134a7e08df9dddeb9ee5044c2145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package libpod

import (
	"net/http"

	"github.com/containers/libpod/v2/libpod"
	"github.com/containers/libpod/v2/pkg/api/handlers/utils"
)

func GetInfo(w http.ResponseWriter, r *http.Request) {
	runtime := r.Context().Value("runtime").(*libpod.Runtime)
	info, err := runtime.Info()
	if err != nil {
		utils.InternalServerError(w, err)
		return
	}
	utils.WriteResponse(w, http.StatusOK, info)
}