cereal/src/services/publications/__init__.py
Campbell Alden 86b0d88874 Improve the publication table / data types to denormalize the values
Returning profile values where necessary will remove the need to compute
heavy joins unless the user actually wants all the data.

Now Publication points at OrderProfiles which don't expose the sequences
Orders->Sequence->EntryProfile avoids including the full `text` for the
sequence.
2026-08-21 00:24:14 +09:00

14 lines
333 B
Python

from .data import Publication, PublicationProfile, Order, Sequence, Entry, OrderProfile
from .service import PublicationService
from .repo import PublicationRepo
__all__ = [
'Publication',
'PublicationProfile',
'Order',
'OrderProfile',
'Sequence',
'Entry',
'PublicationService',
'PublicationRepo',
]