diff options
author | Duco van Amstel <duco.vanamstel@gmail.com> | 2018-11-15 18:24:22 +0000 |
---|---|---|
committer | Wim <wim@42.be> | 2018-11-15 19:24:22 +0100 |
commit | c89085bf44333b4decd75e30cec5849dca859938 (patch) | |
tree | c15f512e7f79a0cba9eab41069a5b3d5d3349c70 /matterclient | |
parent | 4254ed3c638d0378d71c49918f241582ea30dc97 (diff) | |
download | matterbridge-msglm-c89085bf44333b4decd75e30cec5849dca859938.tar.gz matterbridge-msglm-c89085bf44333b4decd75e30cec5849dca859938.tar.bz2 matterbridge-msglm-c89085bf44333b4decd75e30cec5849dca859938.zip |
Fix and enable goimports linter (#591)
Diffstat (limited to 'matterclient')
-rw-r--r-- | matterclient/matterclient.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/matterclient/matterclient.go b/matterclient/matterclient.go index ae7cd94b..edd298db 100644 --- a/matterclient/matterclient.go +++ b/matterclient/matterclient.go @@ -13,13 +13,12 @@ import ( "sync" "time" - prefixed "github.com/matterbridge/logrus-prefixed-formatter" - log "github.com/sirupsen/logrus" - "github.com/gorilla/websocket" "github.com/hashicorp/golang-lru" "github.com/jpillora/backoff" + prefixed "github.com/matterbridge/logrus-prefixed-formatter" "github.com/mattermost/platform/model" + log "github.com/sirupsen/logrus" ) type Credentials struct { |