detrash / recy-network

Recy Network is a solution of recycling and composting for humanity to live in a world free of waste in nature!
https://recy.life
MIT License
3 stars 1 forks source link

API #40

Open yurimutti opened 1 month ago

yurimutti commented 1 month ago

https://app.swaggerhub.com/apis/MUTTIYURI/recy-networking/1.0.0

src/
│
├── config/
│   ├── configuration.ts       # General application configurations
│   ├── database.config.ts     # Database-specific configurations
│   └── jwt.config.ts          # JWT authentication configurations
│
├── shared/
│   ├── constants.ts           # Constants used throughout the application
│   ├── dtos/                   # Shared Data Transfer Objects (DTOs)
│   │   ├── create-user.dto.ts
│   │   └── update-user.dto.ts
│
└── modules/
    ├── user/                  # User module
    │   ├── user.module.ts     # User module definition
    │   ├── user.service.ts    # User service
    │   ├── user.controller.ts # User controller
    │   ├── dto/               # DTOs specific to the user module
    │   │   ├── create-user.dto.ts
    │   │   └── update-user.dto.ts
    │   └── entities/          # Entities specific to the user module
    │       └── user.entity.ts

Security Best Practices