19 lines
295 B
Go
Raw Normal View History

2018-03-26 17:44:35 +00:00
package filteranime
import (
"github.com/aerogo/aero"
2019-06-03 09:32:43 +00:00
"github.com/animenotifier/notify.moe/arn"
2018-03-26 17:44:35 +00:00
)
// Studios ...
2019-06-01 04:55:49 +00:00
func Studios(ctx aero.Context) error {
2018-03-26 17:44:35 +00:00
return editorList(
ctx,
"Anime without studios",
func(anime *arn.Anime) bool {
return len(anime.StudioIDs) == 0
},
nil,
)
}