mirror-nourybot/internal/commands/ping.go

18 lines
432 B
Go
Raw Normal View History

package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v3"
2023-01-04 15:32:17 +01:00
"github.com/lyx0/nourybot/internal/common"
"github.com/lyx0/nourybot/internal/humanize"
)
func Ping(target string, tc *twitch.Client) {
botUptime := humanize.Time(common.GetUptime())
2022-08-07 17:24:47 +02:00
commandsUsed := common.GetCommandsUsed()
2022-08-07 17:24:47 +02:00
reply := fmt.Sprintf("Pong! :) Commands used: %v, Last restart: %v", commandsUsed, botUptime)
common.Send(target, reply, tc)
}