blob: 8aaa69847c9e413c320ad16deea2987896e6d59b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()
}
|