mirror of
https://github.com/home-assistant/core.git
synced 2025-05-21 06:17:06 +00:00
11 lines
270 B
Python
11 lines
270 B
Python
"""Constants for Google Sheets integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "google_sheets"
|
|
|
|
DATA_CONFIG_ENTRY: Final = "config_entry"
|
|
DEFAULT_NAME = "Google Sheets"
|
|
DEFAULT_ACCESS = "https://www.googleapis.com/auth/drive.file"
|