core/homeassistant/components/google_sheets/const.py

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"