core/homeassistant/components/imap/const.py

13 lines
242 B
Python

"""Constants for the imap integration."""
from typing import Final
DOMAIN: Final = "imap"
CONF_SERVER: Final = "server"
CONF_FOLDER: Final = "folder"
CONF_SEARCH: Final = "search"
CONF_CHARSET: Final = "charset"
DEFAULT_PORT: Final = 993