fix: goimports — strip unused imports from all server files
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Build (push) Has been cancelled

This commit is contained in:
2026-04-26 15:00:04 -04:00
parent e598150d90
commit 5e0c10db01
9 changed files with 14 additions and 39 deletions
+2 -4
View File
@@ -2,14 +2,13 @@ package server
import (
"database/sql"
"fmt"
"net/http"
"strings"
"time"
"gophergate/internal/db"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
"gophergate/internal/db"
)
func (s *Server) handleGetClients(c *gin.Context) {
@@ -272,4 +271,3 @@ func (s *Server) handleDeleteClientToken(c *gin.Context) {
c.JSON(http.StatusOK, SuccessResponse(gin.H{"message": "Token revoked"}))
}