Add vk bridge

This commit is contained in:
ivanik
2021-01-22 21:23:21 +05:00
parent 4ac6366706
commit ac2b7301fa
4 changed files with 130 additions and 0 deletions

11
gateway/bridgemap/bvk.go Normal file
View File

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