clan-cli: move clan_cli.nix to clan_lib.nix

This commit is contained in:
lassulus
2025-05-19 18:16:59 +02:00
parent 6812b0a739
commit cb74273da4
45 changed files with 64 additions and 56 deletions

View File

@@ -5,10 +5,10 @@ from pathlib import Path
from typing import Any, Literal
from clan_cli.cmd import RunOpts, run
from clan_cli.nix import nix_shell
from clan_lib.errors import ClanError
from clan_lib.flake import Flake
from clan_lib.nix import nix_shell
from . import API

View File

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