mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 07:30:28 +00:00
12 lines
152 B
Go
12 lines
152 B
Go
|
// +build !nonctalk
|
||
|
|
||
|
package bridgemap
|
||
|
|
||
|
import (
|
||
|
btalk "github.com/42wim/matterbridge/bridge/nctalk"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
FullMap["nctalk"] = btalk.New
|
||
|
}
|