From 0fdabb2ab4027c5a6b41e5dc1485043903f7222e Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Fri, 24 Jan 2025 09:42:52 +0100 Subject: [PATCH] Update readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index ad3e5c8..5f71261 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,15 @@ This is a template for building APIs with Clean Architecture. It contains two examples of APIs built with FastAPI and Flask. - `src` contains the source code. +- `src/core`: business logic (use cases, entities, decorators...). +- `src/infra`: implementations of the interfaces defined in the core. +- `src/infra/api/fastapi`: FastAPI implementation. +- `src/infra/api/flask`: Flask implementation. +- `src/infra/storage/`: Fake storage implementation. +## Requirements + +- Docker ## Prepare