spr migrated books, and tester

This commit is contained in:
buenosairesam
2025-12-31 09:07:27 -03:00
parent 21b8eab3cb
commit cccc6b5a93
136 changed files with 15763 additions and 472 deletions

18
artery/shunts/__init__.py Normal file
View File

@@ -0,0 +1,18 @@
"""
Shunts - Fake connectors for testing.
A shunt redirects flow when the real service isn't available.
Each shunt mimics a vein's interface with configurable responses.
Structure:
shunts/<service>/
├── main.py # FastAPI with config UI
├── depot/
│ └── responses.json # Configurable fake responses
└── README.md
Usage:
1. Start the shunt instead of the real vein
2. Configure responses via the UI or responses.json
3. Run tests against the shunt
"""