Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

Viewing file on branch master

1//go:build !nomastodon
2
3package bridgemap
4
5import (
6 bmastodon "github.com/matterbridge-org/matterbridge/bridge/mastodon"
7)
8
9//nolint:gochecknoinits
10func init() {
11 FullMap["mastodon"] = bmastodon.New
12}
13