mirror of
https://github.com/langgenius/dify.git
synced 2025-07-08 17:53:21 +00:00
10 lines
161 B
Python
10 lines
161 B
Python
![]() |
from datetime import datetime
|
||
|
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class BasePluginEntity(BaseModel):
|
||
|
id: str
|
||
|
created_at: datetime
|
||
|
updated_at: datetime
|