File: __main__.py

package info (click to toggle)
python-advanced-alchemy 1.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,708 kB
  • sloc: python: 25,811; makefile: 162; javascript: 123; sh: 4
file content (10 lines) | stat: -rw-r--r-- 246 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from advanced_alchemy.cli import add_migration_commands as build_cli_interface


def run_cli() -> None:  # pragma: no cover
    """Advanced Alchemy CLI"""
    build_cli_interface()()


if __name__ == "__main__":  # pragma: no cover
    run_cli()