mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
10 lines
296 B
Go
10 lines
296 B
Go
|
package bot
|
||
|
|
||
|
import "github.com/gempir/go-twitch-irc/v3"
|
||
|
|
||
|
func (bot *Bot) handleWhisperMessage(message twitch.WhisperMessage) {
|
||
|
// Print the whisper message for now.
|
||
|
// TODO: Implement a basic whisper handler.
|
||
|
bot.logger.Infof("[#whisper]:%s: %s", message.User.DisplayName, message.Message)
|
||
|
}
|