()
| 101 | |
| 102 | @list_app.callback(invoke_without_command=True) |
| 103 | def list(): |
| 104 | console.info("Listing repos...") |
| 105 | for file in os.listdir(DEFAULT_WORKDIR_CLI): |
| 106 | if file.endswith(".json"): |
| 107 | console.info2(file[:-5]) |
| 108 | |
| 109 | @query_app.callback(invoke_without_command=True) |
| 110 | def query( |
no test coverage detected