diff options
author | Brent Baude <bbaude@redhat.com> | 2020-01-21 12:44:50 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-01-23 11:58:26 -0600 |
commit | cf7be58b2c160e2e1df737015c913fc1aff1dbe8 (patch) | |
tree | 46b7b75d80fc22fc69e6f3ddb1f4dec1c931ef35 /pkg/bindings/bindings.go | |
parent | e6cf0ec857fdda82479f630defd0c9f738e9aab4 (diff) | |
download | podman-cf7be58b2c160e2e1df737015c913fc1aff1dbe8.tar.gz podman-cf7be58b2c160e2e1df737015c913fc1aff1dbe8.tar.bz2 podman-cf7be58b2c160e2e1df737015c913fc1aff1dbe8.zip |
Review corrections pass #2
Add API review comments to correct documentation and endpoints. Also, add a libpode prune method to reduce code duplication. Only used right now for the API but when the remote client is wired, we will switch over there too.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/bindings/bindings.go')
-rw-r--r-- | pkg/bindings/bindings.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pkg/bindings/bindings.go b/pkg/bindings/bindings.go new file mode 100644 index 000000000..e83c4a5e1 --- /dev/null +++ b/pkg/bindings/bindings.go @@ -0,0 +1,9 @@ +// 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 |