12 lines
278 B
Python
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",
|
|
]
|