Add Google Sheets integration (#77853)

Co-authored-by: Allen Porter <allen@thebends.org>
This commit is contained in:
Robert Hillis 2022-09-14 14:31:54 -04:00 committed by GitHub
parent 996bcbdac6
commit a46982befb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 882 additions and 0 deletions

View file

@ -0,0 +1,10 @@
"""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"