Documentation ¶
Overview ¶
Package model contains the domain models of the application.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Quote ¶
type Quote struct { // ID is the ID of the quote. // Read more about ULID here: https://github.com/oklog/ulid ID ulid.ULID `json:"id"` // Text is the text of the quote. Text string `json:"text"` // Author is the author of the quote. Author string `json:"author"` }
Quote is a representation of a quote.
Click to show internal directories.
Click to hide internal directories.