feat: add email sign up

This commit is contained in:
2025-12-11 22:32:23 +07:00
parent 8e88f6a44c
commit 7afdf84ef1
8 changed files with 192 additions and 27 deletions

6
src/auth/type.ts Normal file
View File

@@ -0,0 +1,6 @@
export interface AuthUserSignup {
email: string;
password: string;
confirmPassword: string;
verificationCode: string;
}