mirror of
https://github.com/home-assistant/core.git
synced 2026-01-25 00:52:39 +01:00
11 lines
247 B
Python
11 lines
247 B
Python
"""Constants for the Google Drive integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "google_drive"
|
|
|
|
SCAN_INTERVAL = timedelta(hours=6)
|
|
DRIVE_FOLDER_URL_PREFIX = "https://drive.google.com/drive/folders/"
|