mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
abb2f363af
* Decouple the chat package from the core * Add rest api endpoints for the chat aspect
8 lines
203 B
Go
8 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)
|
|
}
|