mirror-nourybot/pkg/commands/game.go

16 lines
355 B
Go
Raw Normal View History

2021-10-16 18:48:59 +02:00
package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v2"
"github.com/lyx0/nourybot/pkg/api/aiden"
2021-10-16 18:48:59 +02:00
)
func Game(channel string, name string, client *twitch.Client) {
game := aiden.ApiCall(fmt.Sprintf("api/v1/twitch/channel/%s/game", name))
reply := fmt.Sprintf("@%s was last seen playing: %s", name, game)
client.Say(channel, reply)
2021-10-16 18:48:59 +02:00
}