birdbot/common/chat_sync.go

7 lines
135 B
Go
Raw Normal View History

2023-03-30 23:51:05 -04:00
package common
type ChatSyncModule interface {
2023-03-30 23:51:05 -04:00
SendMessage(user string, message string)
RecieveMessage(user User, message string)
}