apiv2 add bindings for logs|events

add go-bindings for logs and events. tests were also added.

Signed-off-by: Brent Baude <bbaude@redhat.com>
This commit is contained in:
Brent Baude
2020-03-14 14:01:20 -05:00
parent e87fe4dbbb
commit d1c26af144
13 changed files with 317 additions and 52 deletions

View File

@ -7,3 +7,12 @@
// is established, users can then manage the Podman container runtime.
package bindings
var (
// PTrue is a convenience variable that can be used in bindings where
// a pointer to a bool (optional parameter) is required.
PTrue bool = true
// PFalse is a convenience variable that can be used in bindings where
// a pointer to a bool (optional parameter) is required.
PFalse bool = false
)