hash-of-wisdom/internal/quotes/quote.go

7 lines
98 B
Go
Raw Normal View History

2025-08-22 16:19:32 +03:00
package quotes
type Quote struct {
Text string `json:"text"`
Author string `json:"author"`
}