mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-04 09:01:51 +09:00
6 lines
188 B
Python
6 lines
188 B
Python
from pydantic import BaseModel
|
|
|
|
class model(BaseModel):
|
|
msg: str | None = None
|
|
url: str | None = None
|
|
sso_list: list[str] = [] # List of SSO providers found on the login page
|