7 lines
98 B
Go
7 lines
98 B
Go
|
|
package quotes
|
||
|
|
|
||
|
|
type Quote struct {
|
||
|
|
Text string `json:"text"`
|
||
|
|
Author string `json:"author"`
|
||
|
|
}
|