|
@@ -17,10 +17,11 @@ func main() {
|
|
|
a.PlacePackageName()
|
|
|
a.Newline()
|
|
|
a.StartImports()
|
|
|
- a.AddImport("time")
|
|
|
+ a.AddImport("time") // Because we want to use time.Time
|
|
|
a.EndImports()
|
|
|
a.Newline()
|
|
|
a.StartStruct("Person")
|
|
|
+ // fieldname, fieldtype, jsontag, comment
|
|
|
a.AddJsonCommentField("Name", "string", "name", "Person's name")
|
|
|
a.AddJsonCommentField("Age", "time.Time", "age", "Person's age, saved and loaded as unix")
|
|
|
a.AddJsonCommentField("Weight", "float32", "weight", "Person's weight in ounces")
|