nut/chipnut/paths.py
2026-04-04 12:02:15 +02:00

8 lines
174 B
Python

from pathlib import Path
def get_root_path() -> Path:
return Path(__file__).resolve().parent
def get_templates_path() -> Path:
return get_root_path() / "templates"