mirror of https://github.com/docker/docs.git
23 lines
402 B
Go
23 lines
402 B
Go
package imageClient
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type ImageList struct {
|
|
XMLName xml.Name `xml:"Images"`
|
|
Xmlns string `xml:"xmlns,attr"`
|
|
OSImages []OSImage `xml:"OSImage"`
|
|
}
|
|
|
|
type OSImage struct {
|
|
Category string
|
|
Label string
|
|
LogicalSizeInGB string
|
|
Name string
|
|
OS string
|
|
Eula string
|
|
Description string
|
|
Location string
|
|
}
|