blob: a823cabe62c47dc9750ca2a2b425b2c2fc255464 [file] [log] [blame]
// index=3
package fortune
type Fortune interface {
// Returns a random fortune.
Get() (Fortune string | error)
// Adds a fortune to the set used by Get().
Add(Fortune string) error
}