13 lines
229 B
Go
13 lines
229 B
Go
|
package main
|
||
|
|
||
|
type Priority struct {
|
||
|
Surfers []Surfer `json:"surfers"`
|
||
|
Count int `json:"count"`
|
||
|
}
|
||
|
|
||
|
type Surfer struct {
|
||
|
Name string `json:"name"`
|
||
|
Color string `json:"color"`
|
||
|
Priority string `json:"priority"`
|
||
|
}
|