mirror-nourybot/pkg/commands/ping.go

18 lines
422 B
Go
Raw Normal View History

package commands
import (
"fmt"
"github.com/gempir/go-twitch-irc/v3"
"github.com/lyx0/nourybot/pkg/common"
"github.com/lyx0/nourybot/pkg/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)
}