mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
9 lines
171 B
Python
9 lines
171 B
Python
"""Support for views."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.helpers.http import ( # noqa: F401
|
|
HomeAssistantView,
|
|
request_handler_factory,
|
|
)
|