11 lines
202 B
Go
11 lines
202 B
Go
|
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
|
||
|
}
|