mirror of
https://github.com/home-assistant/core.git
synced 2026-06-03 22:24:02 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
9 lines
211 B
Python
9 lines
211 B
Python
"""Constants for the Google Drive integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "google_drive"
|
|
|
|
SCAN_INTERVAL = timedelta(hours=6)
|
|
DRIVE_FOLDER_URL_PREFIX = "https://drive.google.com/drive/folders/"
|