enable podman v2 networking for remote client

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-05-12 13:04:10 -05:00
parent 5b4e91db73
commit cf502b99fe
15 changed files with 278 additions and 59 deletions

View File

@ -24,6 +24,15 @@ type swagErrNoSuchContainer struct {
}
}
// No such network
// swagger:response NoSuchNetwork
type swagErrNoSuchNetwork struct {
// in:body
Body struct {
entities.ErrorModel
}
}
// No such exec instance
// swagger:response NoSuchExecInstance
type swagErrNoSuchExecInstance struct {