package acquirer import ( "context" "git.i2edu.net/i2/i2-bill-api/internal/svc" "git.i2edu.net/i2/i2-bill-api/internal/types" "git.i2edu.net/i2/go-zero/core/logx" ) type EnrollLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewEnrollLogic(ctx context.Context, svcCtx *svc.ServiceContext) EnrollLogic { return EnrollLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *EnrollLogic) Enroll(req types.EnrollRequest) (*types.Response, error) { // todo: add your logic here and delete this line return &types.Response{}, nil }