tianyuan-api-server/apps/api/internal/logic/IVYZ/ivyz2125logic.go
2024-10-12 21:35:35 +08:00

32 lines
624 B
Go

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