Files
2026-03-19 09:23:13 +01:00

8 lines
121 B
Go

package main
type Quote struct {
Id int `json:"id"`
Author string `json:"author"`
Body string `json:"body"`
}