anderson-ufrj
feat(api): create models module with pagination exports
b39bef0
"""
API models for request/response validation.
"""
from .pagination import (
CursorInfo,
CursorPaginationRequest,
CursorPaginationResponse,
ChatMessagePagination,
PaginationHelper
)
__all__ = [
"CursorInfo",
"CursorPaginationRequest",
"CursorPaginationResponse",
"ChatMessagePagination",
"PaginationHelper"
]