From df857a1dd696c7eb512aff21420efeff301149ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 8 Jan 2026 06:30:48 +0000 Subject: [PATCH] Apply gci import order changes --- cmd/gf/internal/cmd/cmddep/cmddep_server.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/gf/internal/cmd/cmddep/cmddep_server.go b/cmd/gf/internal/cmd/cmddep/cmddep_server.go index a3257e266..7a3183f96 100644 --- a/cmd/gf/internal/cmd/cmddep/cmddep_server.go +++ b/cmd/gf/internal/cmd/cmddep/cmddep_server.go @@ -18,8 +18,9 @@ import ( "sort" "strings" - "github.com/gogf/gf/cmd/gf/v2/internal/utility/mlog" "github.com/gogf/gf/v2/os/gproc" + + "github.com/gogf/gf/cmd/gf/v2/internal/utility/mlog" ) //go:embed static/* @@ -52,9 +53,9 @@ type packageInfo struct { // packageSummary represents package summary for list API response. type packageSummary struct { - Name string `json:"name"` - DepCount int `json:"depCount"` - UsedByCount int `json:"usedByCount"` + Name string `json:"name"` + DepCount int `json:"depCount"` + UsedByCount int `json:"usedByCount"` } // moduleInfo represents module information for API response.