Parcourir la source

Added comments on example

  * Commented on why we needed to add import code
  * Commented on the order of the AddJsonCommentField() for those who
don't make use of an editor that can show them the `go doc
autostruct.AutoStruct.AddJsonCommentField`
Apollo il y a 2 ans
Parent
commit
11e78d14bd
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      examples/main.go

+ 2 - 1
examples/main.go

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