mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 11:26:46 +00:00
9 lines
234 B
Python
9 lines
234 B
Python
"""HTTP specific constants."""
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.helpers.http import KEY_AUTHENTICATED, KEY_HASS # noqa: F401
|
|
|
|
KEY_HASS_USER: Final = "hass_user"
|
|
KEY_HASS_REFRESH_TOKEN_ID: Final = "hass_refresh_token_id"
|