4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 08:49:24 +00:00

Add initial steam support

This commit is contained in:
Wim
2017-06-22 01:02:05 +02:00
parent 1f91461853
commit 276ac840aa
4 changed files with 216 additions and 0 deletions

View File

@ -39,6 +39,7 @@ type ChannelInfo struct {
}
type Protocol struct {
AuthCode string // steam
BindAddress string // mattermost, slack
Buffer int // api
EditSuffix string // mattermost, slack, discord, telegram, gitter
@ -109,6 +110,7 @@ type Config struct {
Mattermost map[string]Protocol
Matrix map[string]Protocol
Slack map[string]Protocol
Steam map[string]Protocol
Gitter map[string]Protocol
Xmpp map[string]Protocol
Discord map[string]Protocol