diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-07 19:00:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 19:00:57 +0200 |
commit | 8289805f5dce862219c0b124547a898766a0b55c (patch) | |
tree | ce711014576d651d4ca5fa64119a7ed5902ea5dc /pkg/domain/infra/abi/system.go | |
parent | 44f910c28cae178eab9ad439587355fa4927dab7 (diff) | |
parent | 013ecca8959f94cd97ee694676eeda6439ad38b7 (diff) | |
download | podman-8289805f5dce862219c0b124547a898766a0b55c.tar.gz podman-8289805f5dce862219c0b124547a898766a0b55c.tar.bz2 podman-8289805f5dce862219c0b124547a898766a0b55c.zip |
Merge pull request #5738 from baude/v2info
podmanv2 info
Diffstat (limited to 'pkg/domain/infra/abi/system.go')
-rw-r--r-- | pkg/domain/infra/abi/system.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/domain/infra/abi/system.go b/pkg/domain/infra/abi/system.go new file mode 100644 index 000000000..8aaa69847 --- /dev/null +++ b/pkg/domain/infra/abi/system.go @@ -0,0 +1,13 @@ +// +build ABISupport + +package abi + +import ( + "context" + + "github.com/containers/libpod/libpod/define" +) + +func (ic *ContainerEngine) Info(ctx context.Context) (*define.Info, error) { + return ic.Libpod.Info() +} |