From b552aea5208f48c0005dc06f5ed6cee6b629343b Mon Sep 17 00:00:00 2001 From: Shroominic Date: Tue, 12 Aug 2025 15:02:22 -0300 Subject: [PATCH] fix folder name --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5374cd4..013aa77 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -259,7 +259,7 @@ Before requesting review, ensure: ```text routstr-proxy/ -├── router/ # Main application code +├── routstr/ # Main application code │ ├── core/ # Core functionality │ │ ├── admin.py # Admin interface │ │ ├── db.py # Database models and operations @@ -284,10 +284,10 @@ routstr-proxy/ ### Key Components -- **FastAPI Application**: Main API server in `router/core/main.py` -- **Database Models**: SQLModel definitions in `router/core/db.py` -- **Payment Logic**: Cashu integration and cost calculation in `router/payment/` -- **Proxy Handler**: Request forwarding logic in `router/proxy.py` +- **FastAPI Application**: Main API server in `routstr/core/main.py` +- **Database Models**: SQLModel definitions in `routstr/core/db.py` +- **Payment Logic**: Cashu integration and cost calculation in `routstr/payment/` +- **Proxy Handler**: Request forwarding logic in `routstr/proxy.py` ## Documentation