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