mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-27 11:33:33 +00:00
15 lines
246 B
Go
15 lines
246 B
Go
package container
|
|
|
|
import "github.com/docker/docker/api/types"
|
|
|
|
const (
|
|
LabelServiceID = "uncloud.service.id"
|
|
LabelServiceName = "uncloud.service.name"
|
|
)
|
|
|
|
type Container struct {
|
|
types.Container
|
|
}
|
|
|
|
// TODO: implement health related methods.
|