summaryrefslogtreecommitdiffstats
path: root/gateway/bridgemap/bmattermost.go
diff options
context:
space:
mode:
Diffstat (limited to 'gateway/bridgemap/bmattermost.go')
-rw-r--r--gateway/bridgemap/bmattermost.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/gateway/bridgemap/bmattermost.go b/gateway/bridgemap/bmattermost.go
new file mode 100644
index 00000000..3f0f0449
--- /dev/null
+++ b/gateway/bridgemap/bmattermost.go
@@ -0,0 +1,11 @@
+// +build !nomattermost
+
+package bridgemap
+
+import (
+ bmattermost "github.com/42wim/matterbridge/bridge/mattermost"
+)
+
+func init() {
+ FullMap["mattermost"] = bmattermost.New
+}