All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 42s
Account is now the OAuth authorization server with magic link login, OAuth2 authorize endpoint, SSO logout, and session management. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
322 B
Python
13 lines
322 B
Python
# Re-export from canonical shared location
|
|
from shared.models.ghost_membership_entities import (
|
|
GhostLabel, UserLabel,
|
|
GhostNewsletter, UserNewsletter,
|
|
GhostTier, GhostSubscription,
|
|
)
|
|
|
|
__all__ = [
|
|
"GhostLabel", "UserLabel",
|
|
"GhostNewsletter", "UserNewsletter",
|
|
"GhostTier", "GhostSubscription",
|
|
]
|