mirror of
https://github.com/42wim/matterbridge
synced 2024-11-11 01:10:38 +00:00
dbedc99421
Harmony is a relatively new (1,5yo) chat protocol with a small community. This introduces support for Harmony into Matterbridge, using the functionality specifically designed for bridge bots. The implementation is a modest 200 lines of code.
13 lines
183 B
Go
13 lines
183 B
Go
//go:build !noharmony
|
|
// +build !noharmony
|
|
|
|
package bridgemap
|
|
|
|
import (
|
|
bharmony "github.com/42wim/matterbridge/bridge/harmony"
|
|
)
|
|
|
|
func init() {
|
|
FullMap["harmony"] = bharmony.New
|
|
}
|