|
"""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"
|