diff options
Diffstat (limited to 'gateway/bridgemap/bxmpp.go')
-rw-r--r-- | gateway/bridgemap/bxmpp.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gateway/bridgemap/bxmpp.go b/gateway/bridgemap/bxmpp.go new file mode 100644 index 00000000..6988a7d4 --- /dev/null +++ b/gateway/bridgemap/bxmpp.go @@ -0,0 +1,11 @@ +// +build !noxmpp + +package bridgemap + +import ( + bxmpp "github.com/42wim/matterbridge/bridge/xmpp" +) + +func init() { + FullMap["xmpp"] = bxmpp.New +} |