mirror of
https://gitlab.com/KKlochko/tui-rsync.git
synced 2026-09-08 14:37:45 +00:00
11 lines
233 B
Python
11 lines
233 B
Python
from tui_rsync.infrastructure.configuration import UserDataPaths
|
|
from tui_rsync.user_interface.cli.cli import cli_app
|
|
|
|
|
|
def main():
|
|
UserDataPaths().safe_create_user_data_dir()
|
|
cli_app()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|