Commit a15401ae authored by vaikas-google's avatar vaikas-google

Merge pull request #200 from shawnps/patch-3

fix struct tag
parents 2075c39d eca18ec0
...@@ -110,7 +110,7 @@ type Template struct { ...@@ -110,7 +110,7 @@ type Template struct {
// ImportFile describes a base64 encoded file imported by a Template. // ImportFile describes a base64 encoded file imported by a Template.
type ImportFile struct { type ImportFile struct {
Name string `json:"name,omitempty"` 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"` Content string `json:"content"`
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment