Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. type Gopher struct {
  2. Name string `json:"name"`
  3. Sleep time.Duration `json:"sleep"`
  4. Eat int `json:"eat"`
  5. }
  6.  
  7. type Farm struct {
  8. Gophers []Gopher `json:"gophers"`
  9. TotalFood int `json:"totalFood"`
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement