add user auth basic base file architecture

This commit is contained in:
rafiarrafif
2025-05-07 17:15:58 +07:00
parent afa05daab1
commit 836c7f7415
5 changed files with 16 additions and 0 deletions

View File

View File

View File

View File

16
structure.example.md Normal file
View File

@ -0,0 +1,16 @@
src/
└── modules/
└── movie/
├── controller/
│ ├── createMovie.controller.ts
│ ├── getAllMovies.controller.ts
│ ├── getSimilarByGenre.controller.ts
├── services/
│ ├── createMovie.service.ts
│ ├── getAllMovies.service.ts
│ ├── getSimilarByGenre.service.ts
├── movie.model.ts
├── movie.repository.ts
├── movie.schema.ts
├── movie.types.ts
└── index.ts