mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
9 lines
203 B
Go
9 lines
203 B
Go
package models
|
|
|
|
//ChatListener represents the listener for the chat server
|
|
type ChatListener interface {
|
|
ClientAdded(clientID string)
|
|
ClientRemoved(clientID string)
|
|
MessageSent(message ChatMessage)
|
|
}
|