Spaces:
Running
Running
File size: 380 Bytes
05b9702 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | """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())
|