10 lines
159 B
Go
Raw Normal View History

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