11 lines
244 B
Go
Raw Normal View History

2018-03-13 22:38:26 +01:00
package quotes
2019-06-03 18:32:43 +09:00
import "github.com/animenotifier/notify.moe/arn"
2018-03-13 22:38:26 +01:00
// fetchAll returns all quotes
func fetchAll() []*arn.Quote {
return arn.FilterQuotes(func(quote *arn.Quote) bool {
return !quote.IsDraft && len(quote.Text.English) > 0
})
}