Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """HTTP specific constants."""
2 
3 from typing import Final
4 
5 from homeassistant.helpers.http import KEY_AUTHENTICATED, KEY_HASS # noqa: F401
6 
7 DOMAIN: Final = "http"
8 
9 KEY_HASS_USER: Final = "hass_user"
10 KEY_HASS_REFRESH_TOKEN_ID: Final = "hass_refresh_token_id"