From eca18ec09e411acc8e538d14d9290d4b993d43c4 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Fri, 29 Jan 2016 15:28:41 +0900 Subject: [PATCH] fix struct tag --- common/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/types.go b/common/types.go index 0e673a0dd..b0495592f 100644 --- a/common/types.go +++ b/common/types.go @@ -110,7 +110,7 @@ type Template struct { // ImportFile describes a base64 encoded file imported by a Template. type ImportFile struct { Name string `json:"name,omitempty"` - Path string `json:"path",omitempty` // Actual URL for the file + Path string `json:"path,omitempty"` // Actual URL for the file Content string `json:"content"` }