| 8 | |
| 9 | |
| 10 | class State(BaseModel): |
| 11 | app_startup: bool = False |
| 12 | app_shutdown: bool = False |
| 13 | router_startup: bool = False |
| 14 | router_shutdown: bool = False |
| 15 | sub_router_startup: bool = False |
| 16 | sub_router_shutdown: bool = False |
| 17 | |
| 18 | |
| 19 | @pytest.fixture |