mirror-nourybot/pkg/commands/ping.go
2024-03-31 20:57:16 +02:00

18 lines
460 B
Go

package commands
import (
"fmt"
"github.com/nouryxd/nourybot/pkg/common"
"github.com/nouryxd/nourybot/pkg/humanize"
)
// Ping returns information about the bot.
func Ping(env string) string {
botUptime := humanize.Time(common.GetUptime())
commandsUsed := common.GetCommandsUsed()
commit := common.GetVersion()
return fmt.Sprintf("Pong! :) Commands used: %v, Last restart: %v, Running on commit: %v, Env: %v", commandsUsed, botUptime, commit, env)
}