32 lines
722 B
Go
32 lines
722 B
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
|
|
"backend/internal/svc"
|
|
"backend/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type RequestVerificationCodeLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
// 請求發送驗證碼 (用於驗證信箱/手機)
|
|
func NewRequestVerificationCodeLogic(ctx context.Context, svcCtx *svc.ServiceContext) *RequestVerificationCodeLogic {
|
|
return &RequestVerificationCodeLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *RequestVerificationCodeLogic) RequestVerificationCode(req *types.RequestVerificationCodeReq) (resp *types.RespOK, err error) {
|
|
// todo: add your logic here and delete this line
|
|
|
|
return
|
|
}
|