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