Add:
- Api upload background
- /api-client/api-validation.ts

### No Issue
This commit is contained in:
2025-08-27 17:41:42 +08:00
parent 4fc2c90702
commit d3c4f04e07
5 changed files with 142 additions and 27 deletions

View File

@@ -0,0 +1,8 @@
import { apiConfig } from "../api-config";
export async function apiValidationEmail({ email }: { email: string }) {
const response = await apiConfig.post(`/mobile/validate/email`, {
data: email,
});
return response.data;
}