podman v2 remove bloat v2

rid ourseleves of libpod references in v2 client

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-04-16 08:39:34 -05:00
parent 8857ba20a0
commit ba430bfe5e
36 changed files with 750 additions and 715 deletions

View File

@ -4,6 +4,8 @@ import (
"fmt"
"net/http"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/containers/libpod/pkg/api/handlers/utils"
log "github.com/sirupsen/logrus"
)
@ -13,5 +15,5 @@ func UnsupportedHandler(w http.ResponseWriter, r *http.Request) {
log.Infof("Request Failed: %s", msg)
utils.WriteJSON(w, http.StatusInternalServerError,
utils.ErrorModel{Message: msg})
entities.ErrorModel{Message: msg})
}