Files
homeassistant-core/homeassistant/components/feedreader/const.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
193 B
Python
Raw Normal View History

"""Constants for RSS/Atom feeds."""
2024-06-21 20:23:47 +02:00
from datetime import timedelta
DOMAIN = "feedreader"
2024-06-21 20:23:47 +02:00
CONF_MAX_ENTRIES = "max_entries"
DEFAULT_MAX_ENTRIES = 20
DEFAULT_SCAN_INTERVAL = timedelta(hours=1)