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