Remove mention of tests from project structure in CLAUDE.md

This commit is contained in:
JSC
2025-07-02 17:08:54 +02:00
parent bf4baf91e8
commit a1f5dbd0f9

View File

@@ -87,7 +87,6 @@ The Flask backend follows a clean architecture pattern:
- **Routes** (`app/routes/`): Handle HTTP requests/responses, delegate to services - **Routes** (`app/routes/`): Handle HTTP requests/responses, delegate to services
- **Services** (`app/services/`): Contain all business logic, pure functions when possible - **Services** (`app/services/`): Contain all business logic, pure functions when possible
- **Application Factory** (`app/__init__.py`): Creates and configures Flask app - **Application Factory** (`app/__init__.py`): Creates and configures Flask app
- **Tests** (`tests/`): Comprehensive test coverage for services and routes
Key principles: Key principles:
- Routes should be thin - only handle HTTP concerns - Routes should be thin - only handle HTTP concerns