mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
19 lines
408 B
Go
19 lines
408 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/lyx0/nourybot/cmd/bot"
|
|
"github.com/lyx0/nourybot/pkg/humanize"
|
|
"github.com/lyx0/nourybot/pkg/utils"
|
|
)
|
|
|
|
func Ping(target string, nb *bot.Bot) {
|
|
commandCount := fmt.Sprint(utils.GetCommandsUsed())
|
|
botUptime := humanize.Time(nb.Uptime)
|
|
|
|
reply := fmt.Sprintf("Pong! :) Commands Used: %v, Last restart: %v", commandCount, botUptime)
|
|
|
|
nb.Send(target, reply)
|
|
}
|