summaryrefslogtreecommitdiffstats
path: root/gateway/bridgemap
diff options
context:
space:
mode:
authorIvanik <ivan170102@gmail.com>2021-01-29 04:25:14 +0500
committerGitHub <noreply@github.com>2021-01-29 00:25:14 +0100
commit8764be74616bde87bbbf6c32901cd9f43264d1e0 (patch)
tree88902ba17d6a6d245cadb7e0b277bee7ef424f99 /gateway/bridgemap
parent5dd15ef8e716c65accb6cd021095c0e19913d55f (diff)
downloadmatterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.tar.gz
matterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.tar.bz2
matterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.zip
Add vk bridge (#1372)
* Add vk bridge * Vk bridge attachments * Vk bridge forwarded messages * Vk bridge sample config and code cleanup * Vk bridge add vendor * Vk bridge message edit * Vk bridge: fix fetching names of other bots * Vk bridge: code cleanup * Vk bridge: fix shadows declaration * Vk bridge: remove UseFileURL
Diffstat (limited to 'gateway/bridgemap')
-rw-r--r--gateway/bridgemap/bvk.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/gateway/bridgemap/bvk.go b/gateway/bridgemap/bvk.go
new file mode 100644
index 00000000..ea3de19e
--- /dev/null
+++ b/gateway/bridgemap/bvk.go
@@ -0,0 +1,11 @@
+// +build !novk
+
+package bridgemap
+
+import (
+ bvk "github.com/42wim/matterbridge/bridge/vk"
+)
+
+func init() {
+ FullMap["vk"] = bvk.New
+}