Allow for sending chats out from external chat submodule

This commit is contained in:
2023-06-17 23:33:35 +00:00
parent 77d41bb945
commit be07d4450a
4 changed files with 48 additions and 7 deletions

View File

@ -24,5 +24,6 @@ type ModuleManager interface {
// Commands
RegisterCommand(string, ChatCommandConfiguration, func(User, map[string]any) string)
RegisterExternalChat(ID string, chat ExternalChatModule) error
// Submodules
RegisterExternalChat(channelID string, chat ExternalChatModule) error
}