add user registration

This commit is contained in:
João Geonizeli
2022-07-08 19:08:03 -03:00
parent 874706cabb
commit 688d5e89b7
16 changed files with 478 additions and 235 deletions

View File

@@ -0,0 +1,4 @@
export type NewUserDto = {
email: string
password: string
}

View File

@@ -0,0 +1,4 @@
export type UserDto = {
id: number
email: string
}