Files
dify/api/fields/timestamp.py

6 lines
143 B
Python

from typing import Annotated
from pydantic import Field
Timestamp = Annotated[int, Field(..., description="Unix timestamp in milliseconds")]