19 lines
295 B
Go
Raw Normal View History

2018-03-22 21:26:52 +00:00
package filteranime
import (
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
)
// Synopsis ...
func Synopsis(ctx *aero.Context) string {
return editorList(
ctx,
"Anime without a long synopsis",
func(anime *arn.Anime) bool {
return len(anime.Summary) < 170
},
nil,
)
}