Skip to content

Commit bf72b09

Browse files
committed
Fix unconventional import order in handlers.go
1 parent 3a385a5 commit bf72b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

handlers/handlers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ OR CONDITIONS OF ANY KIND, either express or implied.
1111
package handlers
1212

1313
import (
14-
"github.com/vouch/vouch-proxy/pkg/providers/gitlab"
1514
"net/http"
1615

1716
"github.com/gorilla/sessions"
@@ -25,6 +24,7 @@ import (
2524
"github.com/vouch/vouch-proxy/pkg/providers/azure"
2625
"github.com/vouch/vouch-proxy/pkg/providers/common"
2726
"github.com/vouch/vouch-proxy/pkg/providers/github"
27+
"github.com/vouch/vouch-proxy/pkg/providers/gitlab"
2828
"github.com/vouch/vouch-proxy/pkg/providers/google"
2929
"github.com/vouch/vouch-proxy/pkg/providers/homeassistant"
3030
"github.com/vouch/vouch-proxy/pkg/providers/indieauth"

0 commit comments

Comments
 (0)