mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
13 lines
204 B
Go
13 lines
204 B
Go
|
// +build !nodiscord
|
||
|
|
||
|
package bridgemap
|
||
|
|
||
|
import (
|
||
|
bdiscord "github.com/42wim/matterbridge/bridge/discord"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
FullMap["discord"] = bdiscord.New
|
||
|
UserTypingSupport["discord"] = struct{}{}
|
||
|
}
|