mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 19:40:11 +00:00
10 lines
193 B
Python
10 lines
193 B
Python
"""Constants for RSS/Atom feeds."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "feedreader"
|
|
|
|
CONF_MAX_ENTRIES = "max_entries"
|
|
DEFAULT_MAX_ENTRIES = 20
|
|
DEFAULT_SCAN_INTERVAL = timedelta(hours=1)
|