Files
tui-rsync/tui_rsync/main.py
T
KKlochko 02434be628 (Made) the package executable.
Updated the package information.
2023-03-18 09:57:10 +02:00

10 lines
156 B
Python

from .models.models import create_tables
from .cli.cli import cli_app
def main():
create_tables()
cli_app()
if __name__ == "__main__":
main()