Files
epic-go/internal/controller/hero/hero_new.go
hxt c5c273f0ab feat(hero): 新增英雄相关接口和功能
- 新增英雄信息获取接口和相关逻辑
- 实现英雄列表和详情查询功能- 添加英雄相关数据结构和VO对象
- 更新项目结构,移除不必要的文件
2025-06-21 20:12:02 +08:00

16 lines
381 B
Go

// =================================================================================
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
// =================================================================================
package hero
import (
"epic/api/hero"
)
type ControllerV1 struct{}
func NewV1() hero.IHeroV1 {
return &ControllerV1{}
}