blob: 3f0f0449d45137ed60662cc4007d88f688f2f265 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// +build !nomattermost
package bridgemap
import (
bmattermost "github.com/42wim/matterbridge/bridge/mattermost"
)
func init() {
FullMap["mattermost"] = bmattermost.New
}
|