mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-14 15:30:27 +00:00
12 lines
156 B
Go
12 lines
156 B
Go
|
// +build !nomatrix
|
||
|
|
||
|
package bridgemap
|
||
|
|
||
|
import (
|
||
|
bmatrix "github.com/42wim/matterbridge/bridge/matrix"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
FullMap["matrix"] = bmatrix.New
|
||
|
}
|