Skip to content

Commit 93c2932

Browse files
committed
fix: auto-fix import ordering with golangci-lint
- Run make fmt to fix gci import ordering issues - Move external dependencies before internal packages
1 parent b042342 commit 93c2932

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

internal/server/server.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ import (
66
"net/http"
77
"time"
88

9-
"github.com/gin-gonic/gin"
10-
"github.com/prometheus/client_golang/prometheus/promhttp"
11-
129
"ghcr-exporter/internal/config"
1310
"ghcr-exporter/internal/metrics"
1411
"ghcr-exporter/internal/version"
12+
"github.com/gin-gonic/gin"
13+
"github.com/prometheus/client_golang/prometheus/promhttp"
1514
)
1615

1716
type Server struct {

0 commit comments

Comments
 (0)