mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
12 lines
166 B
Go
12 lines
166 B
Go
|
// +build !nowhatsapp
|
||
|
|
||
|
package bridgemap
|
||
|
|
||
|
import (
|
||
|
bwhatsapp "github.com/42wim/matterbridge/bridge/whatsapp"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
FullMap["whatsapp"] = bwhatsapp.New
|
||
|
}
|