mirror of
https://github.com/home-assistant/core.git
synced 2026-07-02 04:06:41 +01:00
e02ea041b7
Co-authored-by: Norbert Rittel <norbert@rittel.de> Co-authored-by: Philippe Lafoucrière <12752+gravis@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Robert Resch <robert@resch.dev> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ariel Ebersberger <ariel@ebersberger.io>
12 lines
249 B
Python
12 lines
249 B
Python
"""Constants for OPNsense component."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "opnsense"
|
|
|
|
CONF_API_SECRET = "api_secret"
|
|
CONF_TRACKER_INTERFACES = "tracker_interfaces"
|
|
|
|
# Update interval for device scanning
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|