2018-03-04 15:43:00 +01:00

18 lines
304 B
Go

package main
import (
"fmt"
"github.com/animenotifier/arn"
)
func main() {
defer arn.Node.Close()
for user := range arn.StreamUsers() {
if user.Notifications().CountUnseen() <= 10 && !user.IsActive() && user.Email != "" && len(user.AnimeList().Items) == 0 {
fmt.Println(user.Email)
}
}
}