# dave note for any changes here ```bash # Generate a new module nest g module mgnt-backend/feature/video-medias --project box-mgnt-api ``` ```bash # Or generate a complete resource (module + controller + service + DTOs) nest g resource mgnt-backend/feature/video-medias --project box-mgnt-api ``` ```code video-medias/ ├── dto/ │ ├── create-video-media.dto.ts │ └── update-video-media.dto.ts ├── entities/ │ └── video-media.entity.ts ├── video-medias.controller.ts ├── video-medias.service.ts └── video-medias.module.ts ```