summaryrefslogtreecommitdiffstats
path: root/bridge/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/config.go')
-rw-r--r--bridge/config.go10
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
}
}