19 lines
708 B
Go
19 lines
708 B
Go
// Package bindings provides golang-based access
|
|
// to the Podman REST API. Users can then interact with API endpoints
|
|
// to manage containers, images, pods, etc.
|
|
//
|
|
// This package exposes a series of methods that allow users to firstly
|
|
// create their connection with the API endpoints. Once the connection
|
|
// 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
|
|
)
|