10 lines
221 B
Go
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"`
|
|
}
|