Move Post/Author/Tag/PostAuthor/PostTag/PostUser models from
shared/models/ghost_content.py to blog/models/content.py so blog-domain
models no longer live in the shared layer. Replace the shared
SqlBlogService + BlogService protocol with a blog-local singleton
(blog_service), and switch entry_associations.py from direct DB access
to HTTP fetch_data("blog", "post-by-id") to respect the inter-service
boundary.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
524 B
Python
15 lines
524 B
Python
from .content import Post, Author, Tag, PostAuthor, PostTag, PostUser
|
|
from .snippet import Snippet
|
|
from .tag_group import TagGroup, TagGroupTag
|
|
|
|
# Shared models — canonical definitions live in shared/models/
|
|
from shared.models.ghost_membership_entities import (
|
|
GhostLabel, UserLabel,
|
|
GhostNewsletter, UserNewsletter,
|
|
GhostTier, GhostSubscription,
|
|
)
|
|
from shared.models.menu_item import MenuItem
|
|
from shared.models.kv import KV
|
|
from shared.models.magic_link import MagicLink
|
|
from shared.models.user import User
|