Files
bl/logic/controller/maphot.go
昔念 82075b0884 refactor(logic): 重构逻辑层代码
- 更新导入路径和结构体命名
- 调整函数签名和返回类型
- 移除未使用的代码文件
- 统一错误处理方式
2025-07-26 00:48:57 +08:00

19 lines
356 B
Go

package controller
import (
"blazing/common/data/entity"
"blazing/logic/service"
maps "blazing/logic/service/MapHot"
)
func (h Controller) MapHot(data *maps.MapHotInboundInfo, c *entity.Player) (result *maps.OutInfo, err service.OutInfo) {
data.Def()
result = &maps.OutInfo{
HotInfos: make([]maps.MapHotInfo, 0),
}
return
}