bb/bot/commands/ping.go

11 lines
202 B
Go
Raw Normal View History

2022-09-06 05:00:47 +00:00
package commands
import (
"git.kill0.net/chill9/beepboop/bot"
)
func PingCommand(cmd *bot.Command, args []string) error {
cmd.Session.ChannelMessageSend(cmd.Message.ChannelID, "pong")
return nil
}