新增游戏人生领取奖励相关接口

This commit is contained in:
chy
2025-06-19 21:19:04 +08:00
parent 31d2d056b4
commit db97319cf9
10 changed files with 261 additions and 7 deletions

View File

@ -0,0 +1,14 @@
package reward
import (
"context"
"github.com/gogf/gf/v2/errors/gcode"
"github.com/gogf/gf/v2/errors/gerror"
"server/api/reward/v1"
)
func (c *ControllerV1) GetGoods(ctx context.Context, req *v1.GetGoodsReq) (res *v1.GetGoodsRes, err error) {
return nil, gerror.NewCode(gcode.CodeNotImplemented)
}