Add Mumble bridge

This commit is contained in:
s3lph
2020-09-24 00:20:22 +02:00
parent 91c58ec027
commit 7c3e12cabd
6 changed files with 343 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// +build !nomumble
package bridgemap
import (
bmumble "github.com/42wim/matterbridge/bridge/mumble"
)
func init() {
FullMap["mumble"] = bmumble.New
}