6 lines
124 B
Python
6 lines
124 B
Python
|
"""Constants for the Epion API."""
|
||
|
from datetime import timedelta
|
||
|
|
||
|
DOMAIN = "epion"
|
||
|
REFRESH_INTERVAL = timedelta(minutes=1)
|