mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
18 lines
460 B
Go
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)
|
|
}
|