10 lines
170 B
Go
Raw Normal View History

2018-04-16 13:48:54 +00:00
package amvs
2019-06-03 09:32:43 +00:00
import "github.com/animenotifier/notify.moe/arn"
2018-04-16 13:48:54 +00:00
func fetchAll() []*arn.AMV {
return arn.FilterAMVs(func(amv *arn.AMV) bool {
return !amv.IsDraft
})
}