diff options
author | Nick Thomas <nick@gitlab.com> | 2021-07-27 09:35:02 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2021-07-27 09:35:02 +0000 |
commit | 82a2153dcc093a99445aedd3734fe7ef868e3a4b (patch) | |
tree | a8084b9c6e3baf279eed8b27999e6813b0407794 /cmd | |
parent | 1eadd3a61f3955354b4041fd284ba50e2a17864a (diff) | |
parent | 4e81d534c2f2c87ebdfeafb1f8338b17ffdfc708 (diff) | |
download | gitlab-shell-82a2153dcc093a99445aedd3734fe7ef868e3a4b.tar.gz |
Merge branch 'sh-fix-gofmt' into 'main'
Make gofmt check fail if there are any matching files
See merge request gitlab-org/gitlab-shell!500
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gitlab-sshd/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gitlab-sshd/main.go b/cmd/gitlab-sshd/main.go index 4cc5f69..d1cc84e 100644 --- a/cmd/gitlab-sshd/main.go +++ b/cmd/gitlab-sshd/main.go @@ -1,10 +1,10 @@ package main import ( + "context" "flag" "os" "os/signal" - "context" "syscall" "time" @@ -13,8 +13,8 @@ import ( "gitlab.com/gitlab-org/gitlab-shell/internal/logger" "gitlab.com/gitlab-org/gitlab-shell/internal/sshd" - "gitlab.com/gitlab-org/labkit/monitoring" "gitlab.com/gitlab-org/labkit/log" + "gitlab.com/gitlab-org/labkit/monitoring" ) var ( |