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 /bridge | |
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 'bridge')
-rw-r--r-- | bridge/steam/steam.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bridge/steam/steam.go b/bridge/steam/steam.go index a35a9d5d..b04c10be 100644 --- a/bridge/steam/steam.go +++ b/bridge/steam/steam.go @@ -2,6 +2,9 @@ package bsteam import ( "fmt" + "strconv" + "sync" + "time" "github.com/42wim/matterbridge/bridge" "github.com/42wim/matterbridge/bridge/config" @@ -9,10 +12,6 @@ import ( "github.com/Philipp15b/go-steam" "github.com/Philipp15b/go-steam/protocol/steamlang" "github.com/Philipp15b/go-steam/steamid" - //"io/ioutil" - "strconv" - "sync" - "time" ) type Bsteam struct { |