Files

8 lines
146 B
Go
Raw Permalink Normal View History

package data
// Person holds someone's most important attributes
type Person struct {
// Name is the person's name
Name string `json:"name"`
}