Spaces:
Sleeping
Sleeping
| """Entry point for the DialectAnalysis MVP. | |
| The main implementation lives in the `dialect_analysis/` package. | |
| You can run either: | |
| - python main.py | |
| - python -m dialect_analysis | |
| """ | |
| from __future__ import annotations | |
| from dialect_analysis.cli import run_cli | |
| def main() -> int: | |
| return run_cli() | |
| if __name__ == "__main__": | |
| raise SystemExit(main()) | |