summaryrefslogtreecommitdiff
path: root/pkg/domain/entities/types.go
blob: e7757a74b74e547a9323c6b571e995c709e1fbbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package entities

type Container struct {
	IdOrNamed
}

type Volume struct {
	Identifier
}

type Report struct {
	Id  []string
	Err map[string]error
}

type PodDeleteReport struct{ Report }
type PodPruneOptions struct{}