Files
nextjs-python-web-template/pkgs/clan-cli/clan_cli/machines/folders.py
2023-08-24 16:58:22 +02:00

12 lines
235 B
Python

from pathlib import Path
from ..dirs import get_clan_flake_toplevel
def machines_folder() -> Path:
return get_clan_flake_toplevel() / "machines"
def machine_folder(machine: str) -> Path:
return machines_folder() / machine