moby--moby/api_params.go

25 lines
414 B
Go
Raw Normal View History

package docker
2013-04-18 16:56:22 +00:00
type SimpleMessage struct {
Message string
}
type ImagesIn struct {
NameFilter string
Quiet bool
All bool
}
type ImagesOut struct {
Repository string `json:",omitempty"`
Tag string `json:",omitempty"`
Id string
Created string `json:",omitempty"`
}
type VersionOut struct {
2013-04-18 16:56:22 +00:00
Version string
GitCommit string
MemoryLimitDisabled bool
}