refactor: move ssh/upload.py from cli to lib

Move the upload module to clan_lib to better organize SSH-related
utilities. Updated all imports across the codebase.
This commit is contained in:
lassulus
2025-07-25 14:09:07 +02:00
committed by DavHau
parent 4f60345ba7
commit c14a5fcc69
5 changed files with 4 additions and 4 deletions

View File

@@ -6,9 +6,9 @@ from tempfile import TemporaryDirectory
from clan_lib.flake import require_flake
from clan_lib.machines.machines import Machine
from clan_lib.ssh.host import Host
from clan_lib.ssh.upload import upload
from clan_cli.completions import add_dynamic_completer, complete_machines
from clan_cli.ssh.upload import upload
log = logging.getLogger(__name__)