00b58bce71
Fixes: #1393.
15 lines
257 B
Go
15 lines
257 B
Go
//go:build !nomatrix
|
|
// +build !nomatrix
|
|
|
|
package bridgemap
|
|
|
|
import (
|
|
bmatrix "github.com/42wim/matterbridge/bridge/matrix"
|
|
)
|
|
|
|
func init() {
|
|
FullMap["matrix"] = bmatrix.New
|
|
UserTypingSupport["matrix"] = struct{}{}
|
|
NoticeSupport["matrix"] = struct{}{}
|
|
}
|