diff options
author | Wim <wim@42.be> | 2016-03-23 00:25:04 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2016-03-23 00:25:04 +0100 |
commit | 6b18257185b1830bd2eff83fae30bdd2055f78b0 (patch) | |
tree | e2210bab3f56e4534afe3348b7482c4f87933953 /config.go | |
parent | 4b1ebaf7d57d4705f0c951b2792c9b165cbb3a16 (diff) | |
download | matterbridge-msglm-6b18257185b1830bd2eff83fae30bdd2055f78b0.tar.gz matterbridge-msglm-6b18257185b1830bd2eff83fae30bdd2055f78b0.tar.bz2 matterbridge-msglm-6b18257185b1830bd2eff83fae30bdd2055f78b0.zip |
Move common code to matterbridge-plus bridge package
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/config.go b/config.go deleted file mode 100644 index 1c16d771..00000000 --- a/config.go +++ /dev/null @@ -1,55 +0,0 @@ -package main - -import ( - log "github.com/Sirupsen/logrus" - "gopkg.in/gcfg.v1" - "io/ioutil" -) - -type Config struct { - IRC struct { - UseTLS bool - SkipTLSVerify bool - Server string - Port int - Nick string - Password string - Channel string - UseSlackCircumfix bool - NickServNick string - NickServPassword string - } - Mattermost struct { - URL string - Port int - ShowJoinPart bool - Token string - IconURL string - SkipTLSVerify bool - BindAddress string - Channel string - PrefixMessagesWithNick bool - NicksPerRow int - NickFormatter string - } - Token map[string]*struct { - IRCChannel string - MMChannel string - } - General struct { - GiphyAPIKey string - } -} - -func NewConfig(cfgfile string) *Config { - var cfg Config - content, err := ioutil.ReadFile(cfgfile) - if err != nil { - log.Fatal(err) - } - err = gcfg.ReadStringInto(&cfg, string(content)) - if err != nil { - log.Fatal("Failed to parse "+cfgfile+":", err) - } - return &cfg -} |