From ac6b9d8c8927ed62557a4426c10710d1b12cb704 Mon Sep 17 00:00:00 2001 From: leiiwang Date: Tue, 6 Dec 2016 16:08:22 +0800 Subject: [PATCH] QCOS-3242 add `created` for tag struct --- kirksdk/index_api.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kirksdk/index_api.go b/kirksdk/index_api.go index 0d2f92a..4ea12e2 100644 --- a/kirksdk/index_api.go +++ b/kirksdk/index_api.go @@ -36,7 +36,8 @@ type Repo struct { } type Tag struct { - Name string `json:"name"` + Name string `json:"name"` + Created time.Time `json:"created"` } type ImageConfig struct {