(self)
| 349 | health = IndexHealthController() |
| 350 | |
| 351 | def get_all(self): |
| 352 | proxy_config = _get_proxy_config() |
| 353 | |
| 354 | index, status = packs_service.fetch_pack_index(proxy_config=proxy_config) |
| 355 | |
| 356 | return {"status": status, "index": index} |
| 357 | |
| 358 | |
| 359 | class PacksController(BasePacksController): |
nothing calls this directly
no test coverage detected