mirror of
https://github.com/langgenius/dify.git
synced 2026-02-22 19:15:47 +08:00
12 lines
227 B
Python
12 lines
227 B
Python
from datetime import datetime
|
|
|
|
from core.plugin.entities.base import BasePluginEntity
|
|
|
|
|
|
class EndpointEntity(BasePluginEntity):
|
|
settings: dict
|
|
hook_id: str
|
|
tenant_id: str
|
|
plugin_id: str
|
|
expired_at: datetime
|