Viewing file on branch master
| / | gateway | bridgemap | bxmpp.go |
| 1 | //go:build !noxmpp |
| 2 | // +build !noxmpp |
| 3 | |
| 4 | package bridgemap |
| 5 | |
| 6 | import ( |
| 7 | bxmpp "github.com/matterbridge-org/matterbridge/bridge/xmpp" |
| 8 | ) |
| 9 | |
| 10 | func init() { |
| 11 | FullMap["xmpp"] = bxmpp.New |
| 12 | } |
| 13 |