mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 10:57:19 +00:00
8 lines
155 B
Python
8 lines
155 B
Python
"""Frontend for Home Assistant."""
|
|
from pathlib import Path
|
|
|
|
|
|
def where() -> Path:
|
|
"""Return path to the frontend."""
|
|
return Path(__file__).parent
|