Files
roa2web-service-auto/deploy-package-20260223-151231/shared/models/__init__.py
Claude Agent 8bc567a9c5 fix telegram
2026-02-23 15:12:33 +00:00

12 lines
278 B
Python

"""Shared Pydantic models for ROA2WEB applications."""
from .company import Company, CompanyListResponse
from .calendar import CalendarPeriod, CalendarPeriodsResponse
__all__ = [
"Company",
"CompanyListResponse",
"CalendarPeriod",
"CalendarPeriodsResponse",
]