mirror of
https://github.com/containers/podman.git
synced 2025-06-17 23:20:59 +08:00

* Move from simple string to semver objects * Change client API Version from '1' to 2.0.0 Signed-off-by: Jhon Honce <jhonce@redhat.com>
27 lines
875 B
Go
27 lines
875 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
|
|
|
|
import (
|
|
"github.com/blang/semver"
|
|
)
|
|
|
|
var (
|
|
// PTrue is a convenience variable that can be used in bindings where
|
|
// a pointer to a bool (optional parameter) is required.
|
|
pTrue = true
|
|
PTrue = &pTrue
|
|
// PFalse is a convenience variable that can be used in bindings where
|
|
// a pointer to a bool (optional parameter) is required.
|
|
pFalse = false
|
|
PFalse = &pFalse
|
|
|
|
// APIVersion - podman will fail to run if this value is wrong
|
|
APIVersion = semver.MustParse("2.0.0")
|
|
)
|