- package main
- import (
- "time"
- )
- type ExamplePerson struct {
- Name string `json:"name"` // Person's name
- Age time.Time `json:"age"` // Person's age, saved and loaded as unix
- Weight float32 `json:"weight"` // Person's weight in ounces
- Height float32 `json:"height"` // Person's height in inches
- }
|