generated from coulomb/repo-seed
Start user-engine implementation scaffold
This commit is contained in:
53
src/user_engine/domain/__init__.py
Normal file
53
src/user_engine/domain/__init__.py
Normal file
@@ -0,0 +1,53 @@
|
||||
"""Domain schemas for user-engine."""
|
||||
|
||||
from user_engine.domain.models import (
|
||||
Account,
|
||||
AccountStatus,
|
||||
Actor,
|
||||
Application,
|
||||
ApplicationBinding,
|
||||
AttributeDefinition,
|
||||
AuditRecord,
|
||||
AuthorizationDecision,
|
||||
AuthorizationEffect,
|
||||
AuthorizationRequest,
|
||||
Catalog,
|
||||
CatalogLifecycle,
|
||||
ExternalIdentity,
|
||||
Membership,
|
||||
Mutability,
|
||||
OutboxEvent,
|
||||
PrincipalType,
|
||||
ProfileScope,
|
||||
ProfileValue,
|
||||
ProjectionType,
|
||||
Sensitivity,
|
||||
User,
|
||||
Visibility,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Account",
|
||||
"AccountStatus",
|
||||
"Actor",
|
||||
"Application",
|
||||
"ApplicationBinding",
|
||||
"AttributeDefinition",
|
||||
"AuditRecord",
|
||||
"AuthorizationDecision",
|
||||
"AuthorizationEffect",
|
||||
"AuthorizationRequest",
|
||||
"Catalog",
|
||||
"CatalogLifecycle",
|
||||
"ExternalIdentity",
|
||||
"Membership",
|
||||
"Mutability",
|
||||
"OutboxEvent",
|
||||
"PrincipalType",
|
||||
"ProfileScope",
|
||||
"ProfileValue",
|
||||
"ProjectionType",
|
||||
"Sensitivity",
|
||||
"User",
|
||||
"Visibility",
|
||||
]
|
||||
Reference in New Issue
Block a user