DialectAnalysis / main.py
thomascerniglia's picture
Upload 8 files
05b9702 verified
raw
history blame contribute delete
380 Bytes
"""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())