diff options
author | Wim <wim@42.be> | 2016-07-14 00:23:50 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2016-08-14 22:40:26 +0200 |
commit | 1f72ca4c4ecb5ab3ef831b8e70c74909f5720fb8 (patch) | |
tree | 3240335d69700fe216c1a966a8cbb09703f2f08c /bridge/config.go | |
parent | 46faad8b57c7c02e2ec158fe7462f751ba63c3be (diff) | |
download | matterbridge-msglm-1f72ca4c4ecb5ab3ef831b8e70c74909f5720fb8.tar.gz matterbridge-msglm-1f72ca4c4ecb5ab3ef831b8e70c74909f5720fb8.tar.bz2 matterbridge-msglm-1f72ca4c4ecb5ab3ef831b8e70c74909f5720fb8.zip |
Add initial XMPP support
Diffstat (limited to 'bridge/config.go')
-rw-r--r-- | bridge/config.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bridge/config.go b/bridge/config.go index 3750a1a0..274d4261 100644 --- a/bridge/config.go +++ b/bridge/config.go @@ -38,12 +38,22 @@ type Config struct { IgnoreNicks string NoTLS bool } + Xmpp struct { + Jid string + Password string + Server string + Muc string + Nick string + } Channel map[string]*struct { IRC string Mattermost string + Xmpp string } General struct { GiphyAPIKey string + Xmpp bool + Irc bool } } |