summaryrefslogtreecommitdiffstats
path: root/gateway/bridgemap/bmatrix.go
blob: 2b0510bbf1addcb3cd87115b31ac4780dce39387 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// +build !nomatrix

package bridgemap

import (
	bmatrix "github.com/42wim/matterbridge/bridge/matrix"
)

func init() {
	FullMap["matrix"] = bmatrix.New
	UserTypingSupport["matrix"] = struct{}{}
}