Skip to content

Commit

Permalink
Folder Structure Visualization Improved
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinkhair42 authored Feb 18, 2025
1 parent 02bdbf0 commit 046798b
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,30 +84,31 @@ The script creates the following structure:

```
project-root/
├── src/
│ ├── config/
│ │ ├── auth/
│ │ │ ├── controllers/
│ │ │ ├── models/
│ │ │ ├── routes/
│ │ │ ├── services/
│ │ │ └── schemas/
│ │ └── users/
│ │ ├── controllers/
│ │ ├── models/
│ │ ├── routes/
│ │ ├── services/
│ │ └── schemas/
│ ├── middleware/
│ ├── utils/
│ └── types/
├── tests/
│ ├── unit/
│ ├── integration/
│ └── fixtures/
├── scripts/
└── docs/
└── api/
├───docs
│ └───api
├───scripts
├───src
│ ├───config
│ ├───features
│ │ ├───auth
│ │ │ ├───controllers
│ │ │ ├───models
│ │ │ ├───routes
│ │ │ ├───schemas
│ │ │ └───services
│ │ └───users
│ │ ├───controllers
│ │ ├───models
│ │ ├───routes
│ │ ├───schemas
│ │ └───services
│ ├───middleware
│ ├───types
│ └───utils
└───tests
├───fixtures
├───integration
└───unit
```

## Generated Files
Expand Down

0 comments on commit 046798b

Please sign in to comment.