mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +08:00
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:
@ -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
|
||||
)
|
||||
|
Reference in New Issue
Block a user