13 lines
226 B
Python
13 lines
226 B
Python
|
"""Constants for the SimpleFIN integration."""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import logging
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final = "simplefin"
|
||
|
|
||
|
LOGGER = logging.getLogger(__package__)
|
||
|
|
||
|
CONF_ACCESS_URL = "access_url"
|