Djordje Lukic f4bde8cb89 Multiple backend for the cli
* implement a little azure backend
* implement an example backend
* use the right backend from the context
2020-04-30 11:01:04 +02:00

23 lines
352 B
Go

package containers
import (
"context"
)
type Container struct {
ID string
Status string
Image string
Command string
CpuTime uint64
MemoryUsage uint64
MemoryLimit uint64
PidsCurrent uint64
PidsLimit uint64
Labels []string
}
type ContainerService interface {
List(context.Context) ([]Container, error)
}