Implement soulseek bridge

This commit is contained in:
7x11x13
2024-07-12 13:15:24 -04:00
parent d16645c952
commit cbae29b5dd
4 changed files with 695 additions and 0 deletions

View File

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