10 lines
174 B
Go
Raw Normal View History

2018-11-22 01:27:53 +00:00
package groups
import "github.com/animenotifier/arn"
func fetchGroups() []*arn.Group {
return arn.FilterGroups(func(group *arn.Group) bool {
return !group.IsDraft
})
}