8 lines
121 B
Go
8 lines
121 B
Go
package main
|
|
|
|
type Quote struct {
|
|
Id int `json:"id"`
|
|
Author string `json:"author"`
|
|
Body string `json:"body"`
|
|
}
|