Concept Flow - Class-based dependencies
Define class with __init__
Create instance per request
Call __call__ method
Return dependency data
Inject into path operation function
Use data in endpoint
FastAPI creates an instance of the class for each request, calls its __call__ method to get data, and injects that data into the endpoint.