github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/pkg/bindings/bindings.go (about) 1 // Package bindings provides golang-based access 2 // to the Podman REST API. Users can then interact with API endpoints 3 // to manage containers, images, pods, etc. 4 // 5 // This package exposes a series of methods that allow users to firstly 6 // create their connection with the API endpoints. Once the connection 7 // is established, users can then manage the Podman container runtime. 8 9 package bindings 10 11 var ( 12 // PTrue is a convenience variable that can be used in bindings where 13 // a pointer to a bool (optional parameter) is required. 14 PTrue bool = true 15 // PFalse is a convenience variable that can be used in bindings where 16 // a pointer to a bool (optional parameter) is required. 17 PFalse bool = false 18 )