Files
virtual-kubelet/vendor/github.com/hyperhq/libcompose/project/container.go
2017-12-05 17:53:58 -06:00

10 lines
204 B
Go

package project
// Container defines what a libcompose container provides.
type Container interface {
ID() (string, error)
Name() string
Port(port string) (string, error)
IsRunning() (bool, error)
}