Files
hlaskovnik-reimagined/backend/models.go
T
2026-04-22 19:45:24 +02:00

8 lines
121 B
Go
Executable File

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