mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-17 18:35:19 +02:00
14 lines
250 B
Python
14 lines
250 B
Python
|
|
from datetime import datetime
|
||
|
|
|
||
|
|
from pydantic import BaseModel
|
||
|
|
|
||
|
|
|
||
|
|
class GoogleAuthCredentialsBase(BaseModel):
|
||
|
|
token: str
|
||
|
|
refresh_token: str
|
||
|
|
token_uri: str
|
||
|
|
client_id: str
|
||
|
|
expiry: datetime
|
||
|
|
scopes: list[str]
|
||
|
|
client_secret: str
|