18 lines
303 B
Go
18 lines
303 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)
|
||
|
}
|
||
|
}
|
||
|
}
|