diff options
author | Till Faelligen <2353100+S7evinK@users.noreply.github.com> | 2024-11-14 16:40:08 +0100 |
---|---|---|
committer | Till Faelligen <2353100+S7evinK@users.noreply.github.com> | 2024-11-14 16:40:08 +0100 |
commit | 11b48749bf96fb1f7761df6d7a21cf1cd8484e20 (patch) | |
tree | 7ab3b438b9edf72bc34b633030cac7735fa4376c /setup | |
parent | 3ca9dae95a3852a39c0ca1879a34fbf23098a9ff (diff) |
Fix linting
Diffstat (limited to 'setup')
-rw-r--r-- | setup/base/base.go | 4 | ||||
-rw-r--r-- | setup/mscs/msc2836/msc2836_test.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/setup/base/base.go b/setup/base/base.go index 9b8f1f92..359a6816 100644 --- a/setup/base/base.go +++ b/setup/base/base.go @@ -28,10 +28,10 @@ import ( "github.com/matrix-org/gomatrixserverlib/fclient" "github.com/prometheus/client_golang/prometheus/promhttp" - "github.com/gorilla/mux" - "github.com/kardianos/minwinsvc" "github.com/element-hq/dendrite/internal" "github.com/element-hq/dendrite/internal/httputil" + "github.com/gorilla/mux" + "github.com/kardianos/minwinsvc" "github.com/sirupsen/logrus" diff --git a/setup/mscs/msc2836/msc2836_test.go b/setup/mscs/msc2836/msc2836_test.go index 63bc2c18..5b85e670 100644 --- a/setup/mscs/msc2836/msc2836_test.go +++ b/setup/mscs/msc2836/msc2836_test.go @@ -14,9 +14,9 @@ import ( "testing" "time" - "github.com/gorilla/mux" "github.com/element-hq/dendrite/setup/process" "github.com/element-hq/dendrite/syncapi/synctypes" + "github.com/gorilla/mux" "github.com/matrix-org/gomatrixserverlib" "github.com/matrix-org/gomatrixserverlib/spec" |