diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-23 11:12:36 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 11:12:36 -0800 |
commit | 5bad873c4cd9fab9112e1d84ba376d47073cc8bb (patch) | |
tree | ec76af6eb70bebd52e861273228215480df0cbc2 /pkg/bindings | |
parent | 8beeb067aac857deb29e91562cf4b6f068fe0328 (diff) | |
parent | cf7be58b2c160e2e1df737015c913fc1aff1dbe8 (diff) | |
download | podman-5bad873c4cd9fab9112e1d84ba376d47073cc8bb.tar.gz podman-5bad873c4cd9fab9112e1d84ba376d47073cc8bb.tar.bz2 podman-5bad873c4cd9fab9112e1d84ba376d47073cc8bb.zip |
Merge pull request #4953 from baude/reviewcorrections2
Review corrections pass #2
Diffstat (limited to 'pkg/bindings')
-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 |