mirror-nourybot/internal/commands/ping.go

17 lines
416 B
Go

package commands
import (
"fmt"
"github.com/lyx0/nourybot/internal/common"
"github.com/lyx0/nourybot/pkg/humanize"
)
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)
}