package IVYZ import ( "context" "tianyuan-api/apps/api/internal/svc" "tianyuan-api/apps/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type IVYZ9363Logic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewIVYZ9363Logic(ctx context.Context, svcCtx *svc.ServiceContext) *IVYZ9363Logic { return &IVYZ9363Logic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *IVYZ9363Logic) IVYZ9363(req *types.Request) (resp *types.Response, err error) { // todo: add your logic here and delete this line return }