28 lines
483 B
Go
28 lines
483 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/animenotifier/arn"
|
||
|
"github.com/fatih/color"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
color.Yellow("Refreshing game information")
|
||
|
|
||
|
defer color.Green("Finished.")
|
||
|
defer arn.Node.Close()
|
||
|
|
||
|
for user := range arn.StreamUsers() {
|
||
|
if user.Accounts.Osu.Nick != "" {
|
||
|
osu(user)
|
||
|
}
|
||
|
|
||
|
if user.Accounts.Overwatch.BattleTag != "" {
|
||
|
overwatch(user)
|
||
|
}
|
||
|
|
||
|
if user.Accounts.FinalFantasyXIV.Nick != "" && user.Accounts.FinalFantasyXIV.Server != "" {
|
||
|
ffxiv(user)
|
||
|
}
|
||
|
}
|
||
|
}
|