mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-09-13 08:57:43 +00:00
10 lines
156 B
Python
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()
|