修复(#104): 修复 goctl 重新生成代码漂移

Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
2026-05-27 23:46:38 -07:00
parent 197fed7d12
commit 2f334e93fb
43 changed files with 3001 additions and 1513 deletions
@@ -0,0 +1,11 @@
package server
import (
"github.com/gin-gonic/gin"
serverhandler "github.com/perfect-panel/server/internal/handler/server"
"github.com/perfect-panel/server/internal/svc"
)
func GetServerUserListHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) {
return serverhandler.GetServerUserListHandler(svcCtx)
}