mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-25 15:47:49 +08:00
8 lines
229 B
Python
8 lines
229 B
Python
from core.plugin.impl.base import BasePluginClient
|
|
|
|
|
|
class OAuthService(BasePluginClient):
|
|
@classmethod
|
|
def get_authorization_url(cls, tenant_id: str, user_id: str, provider_name: str) -> str:
|
|
return "1234567890"
|