(refresh=False)
| 58 | |
| 59 | |
| 60 | def load_application_index(refresh=False): |
| 61 | if refresh or not APP_INDEX_FILE.exists(): |
| 62 | return build_application_index() |
| 63 | data = load_json_list(APP_INDEX_FILE) |
| 64 | return data or build_application_index() |
| 65 | |
| 66 | |
| 67 | def find_application(name): |
no test coverage detected