diff options
author | Liam Stanley <me@liamstanley.io> | 2018-06-09 06:47:40 -0400 |
---|---|---|
committer | Wim <wim@42.be> | 2018-06-09 12:47:40 +0200 |
commit | 51327a405651442ac47c4ce75363442fa323b592 (patch) | |
tree | 4011309b5c748f7e5e717a5a7fc62a4026c6f421 /gateway/router.go | |
parent | 33bd60528be4eaf28ffd1065517ea41fde9ea62b (diff) | |
download | matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.tar.gz matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.tar.bz2 matterbridge-msglm-51327a405651442ac47c4ce75363442fa323b592.zip |
Reconnect on quit. (irc) See #431 (#445)
* potential fixes for #431
* go: fix formatting/gofmt/goreturns
Diffstat (limited to 'gateway/router.go')
-rw-r--r-- | gateway/router.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gateway/router.go b/gateway/router.go index 264486c2..3a45de36 100644 --- a/gateway/router.go +++ b/gateway/router.go @@ -2,9 +2,10 @@ package gateway import ( "fmt" + "github.com/42wim/matterbridge/bridge" "github.com/42wim/matterbridge/bridge/config" - "github.com/42wim/matterbridge/gateway/samechannel" + samechannelgateway "github.com/42wim/matterbridge/gateway/samechannel" // "github.com/davecgh/go-spew/spew" "time" ) |