Files
learngo/x-tba/2-structs/xxx-wizards/wizards.go
2019-04-12 11:58:12 +03:00

10 lines
221 B
Go

package wizards
// Wizard is one of the greatest of people
type Wizard struct {
// name won't be marshalled (should be exported)
Name string `json:name`
Lastname string `json:"-"`
Nick string `json:"nick"`
}