From 27181144f2e02bce8aab8e7c33fe9abb12c390f4 Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 21 Jun 2026 07:06:08 -0600 Subject: [PATCH] docs: list remittances.py in api_routers/ Project layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Another router extraction landed: api_routers/remittances.py now owns the three /api/remittances[...] routes (list, stream, detail). Pure code-organization move from api.py — no new endpoints, no new functionality. Update the Project layout block to list remittances.py alongside the other 9 routers with the routes it owns. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3d8b059..1b550d5 100644 --- a/README.md +++ b/README.md @@ -484,6 +484,7 @@ backup API). │ │ │ ├── batches.py # GET /api/batches, /api/batches/{id}, /api/batch-diff │ │ │ ├── claims.py # GET /api/claims, /api/claims/stream, /api/claims/{id}, │ │ │ │ # /api/claims/{id}/serialize-837, /api/claims/{id}/line-reconciliation +│ │ │ ├── remittances.py # GET /api/remittances, /api/remittances/stream, /api/remittances/{id} │ │ │ ├── providers.py # GET /api/providers │ │ │ ├── clearhouse.py # GET /api/clearhouse, POST /api/clearhouse/submit │ │ │ └── config.py # /api/config/providers[/...], /api/config/payers[/...], /api/admin/reload-config