7 lines
246 B
TypeScript
7 lines
246 B
TypeScript
|
import axios from '@/utils/axios'
|
||
|
import { EmailSendDto, EmailSendResponse } from './email.interface'
|
||
|
|
||
|
export async function sendEmailVerifyCode(params: EmailSendDto) {
|
||
|
return axios.get<EmailSendResponse>('/api/email/verifyCode', { params })
|
||
|
}
|