sentiment-analysis / app /__main__.py
Tymec's picture
Update docstrings and comments
d4ef46b
raw
history blame
No virus
153 Bytes
"""Entry point for the application."""
from __future__ import annotations
from app.cli import cli_wrapper as cli
if __name__ == "__main__":
cli()