 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type OtherStruct ¶
type OtherStruct struct {
	Y int
	// contains filtered or unexported fields
}
    type Person ¶
type Person struct {
	FirstName, LastName string
	Age                 int // Age comment
	// Before nice comment
	Nice *bool // After Nice comment
	// Before Color comment
	Color         ColorType `json:"COLOR_TYPE"`
	OptionalColor *ColorType
	Father        *Person
	Uncles        []*Person
	Children      []Person
}
    Struct comment before type
type YetAnotherStruct ¶
type YetAnotherStruct struct {
	Y int
}
     Click to show internal directories. 
   Click to hide internal directories.