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

Add channel key support (irc). Closes #27

This commit is contained in:
Wim
2017-01-04 14:10:35 +01:00
parent 01afe03a3f
commit 7685fe1724
3 changed files with 37 additions and 7 deletions

View File

@ -52,9 +52,14 @@ type Protocol struct {
UseTLS bool // IRC
}
type ChannelOptions struct {
Key string // irc
}
type Bridge struct {
Account string
Channel string
Options ChannelOptions
}
type Gateway struct {