clan-cli: clan_cli.cmd -> clan_lib.cmd

This commit is contained in:
lassulus
2025-05-19 19:07:24 +02:00
parent b10682c7f7
commit 1df5dfe6d3
41 changed files with 44 additions and 52 deletions

View File

@@ -4,8 +4,7 @@ from dataclasses import dataclass, field
from pathlib import Path
from typing import Any, Literal
from clan_cli.cmd import RunOpts, run
from clan_lib.cmd import RunOpts, run
from clan_lib.errors import ClanError
from clan_lib.flake import Flake
from clan_lib.nix import nix_shell

View File

@@ -2,8 +2,7 @@ import argparse
import re
from dataclasses import dataclass
from clan_cli.cmd import run
from clan_lib.cmd import run
from clan_lib.nix import nix_shell
from . import API

View File

@@ -3,10 +3,10 @@ import time
from dataclasses import dataclass
from typing import Literal
from clan_cli.cmd import RunOpts
from clan_cli.machines.machines import Machine
from clan_lib.api import API
from clan_lib.cmd import RunOpts
from clan_lib.errors import ClanError
log = logging.getLogger(__name__)