mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 23:40:27 +00:00
13 lines
191 B
Go
13 lines
191 B
Go
// +build !nowhatsapp
|
|
// +build !whatsappmulti
|
|
|
|
package bridgemap
|
|
|
|
import (
|
|
bwhatsapp "github.com/42wim/matterbridge/bridge/whatsapp"
|
|
)
|
|
|
|
func init() {
|
|
FullMap["whatsapp"] = bwhatsapp.New
|
|
}
|