10 lines
204 B
Go
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)
|
|
}
|