()
| 589 | |
| 590 | @app.command() |
| 591 | def langs_json(): |
| 592 | langs = [] |
| 593 | for lang_path in get_lang_paths(): |
| 594 | if lang_path.is_dir() and lang_path.name in SUPPORTED_LANGS: |
| 595 | langs.append(lang_path.name) |
| 596 | print(json.dumps(langs)) |
| 597 | |
| 598 | |
| 599 | @app.command() |
nothing calls this directly
no test coverage detected
searching dependent graphs…