* API: Send all tags on History API call

This commit is contained in:
Guillaume J. Charmes
2013-06-18 10:31:07 -07:00
parent 02a002d264
commit 808faa6371
4 changed files with 12 additions and 11 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
package docker
type APIHistory struct {
ID string `json:"Id"`
Tag string `json:",omitempty"`
ID string `json:"Id"`
Tags []string `json:",omitempty"`
Created int64
CreatedBy string `json:",omitempty"`
}