gofmt: restore import grouping after the module rename
CI / test (push) Successful in 5s

The rename to git.ryuvia.com/niklas/... was a plain string substitution, so it
left the import blocks in their old order. The new path sorts before
github.com/go-chi/..., where the old one sorted after, which gofmt considers
unformatted.

go vet does not look at import order, so CI had nothing to say about it.
This commit is contained in:
Niklas Ye
2026-08-19 21:21:33 +02:00
parent 6047d1a9f7
commit 03504b61be
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -11,8 +11,8 @@ import (
"strings"
"time"
"github.com/go-chi/chi/v5"
"git.ryuvia.com/niklas/terdut-server/internal/models"
"github.com/go-chi/chi/v5"
)
func handleBootstrap(db *sql.DB) http.HandlerFunc {