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 @@
import { User } from "../entity/user.entity";
import { AppDataSource } from "../infra/dataSource";
export const userRepository = AppDataSource.getRepository(User)