Files
clan-core/pkgs/clan-cli/clan_cli/machines/facts.py
2023-09-21 17:22:20 +02:00

10 lines
278 B
Python

from .folders import machine_folder
def machine_has_fact(machine: str, fact: str) -> bool:
return (machine_folder(machine) / "facts" / fact).exists()
def machine_get_fact(machine: str, fact: str) -> str:
return (machine_folder(machine) / "facts" / fact).read_text()