Refactor(lib/inventory): move machine actions into clan_lib/machines/actions.py

This commit is contained in:
Johannes Kirschbauer
2025-05-26 17:50:18 +02:00
parent d7b111ef0a
commit 349968c631
2 changed files with 1 additions and 1 deletions

View File

@@ -9,13 +9,13 @@ from clan_lib.api.modules import parse_frontmatter
from clan_lib.dirs import specific_machine_dir
from clan_lib.errors import ClanError
from clan_lib.flake import Flake
from clan_lib.machines.actions import get_machine
from clan_lib.machines.machines import Machine
from clan_lib.nix_models.inventory import Machine as InventoryMachine
from clan_lib.persist.inventory_store import InventoryStore
from clan_cli.completions import add_dynamic_completer, complete_tags
from clan_cli.machines.hardware import HardwareConfig
from clan_cli.machines.inventory import get_machine
log = logging.getLogger(__name__)