1
0
Fork 0
mirror of https://github.com/lyx0/nourybot.git synced 2024-11-13 19:49:55 +01:00
mirror-nourybot/pkg/commands/echo.go
2021-10-31 15:03:31 +01:00

9 lines
182 B
Go

package commands
import "github.com/lyx0/nourybot/cmd/bot"
// Echo responds with the given message.
func Echo(channel, message string, nb *bot.Bot) {
nb.Send(channel, message)
}