/
/
/
1"""Google Drive File System Provider constants."""
2
3from typing import Final
4
5# Google OAuth + Drive endpoints
6OAUTH_AUTHORIZE_URL: Final[str] = "https://accounts.google.com/o/oauth2/v2/auth"
7OAUTH_TOKEN_URL: Final[str] = "https://oauth2.googleapis.com/token"
8# read-only access to all files in the user's Drive
9OAUTH_SCOPE: Final[str] = "https://www.googleapis.com/auth/drive.readonly"
10
11# Google Drive marks folders with this mimeType
12FOLDER_MIME_TYPE: Final[str] = "application/vnd.google-apps.folder"
13