feat(internal): 添加 CORS 支持并更新 API 路径- 在 cmd.go 中添加了 CORS 中间件,用于支持跨域请求

- 更新了 hero.go 中的 API 路径,使其符合新的命名规范
- 优化了 hero_v1.go 中的响应构造方式,提高了代码效率
This commit is contained in:
hxt
2025-06-22 23:50:57 +08:00
parent eac06dfed3
commit 1fbea6ad9f
3 changed files with 10 additions and 8 deletions

View File

@@ -26,9 +26,7 @@ func (c *ControllerV1) GetList(ctx context.Context, req *v1.GetListReq) (res *v1
}
// 构造响应
res = &v1.GetListRes{
Records: list, // ✅ 正确赋值字段
}
res = (*v1.GetListRes)(&list)
return res, nil
}