16 lines
382 B
Python
16 lines
382 B
Python
"""HTTP DTOs for investment-goal collection and goal-book review."""
|
|
|
|
from app.core.investment_goal_contracts import (
|
|
InvestmentGoalBookPublish,
|
|
InvestmentGoalBookReview,
|
|
InvestmentGoalConfirmation,
|
|
InvestmentGoalCreate,
|
|
)
|
|
|
|
__all__ = [
|
|
"InvestmentGoalBookPublish",
|
|
"InvestmentGoalBookReview",
|
|
"InvestmentGoalConfirmation",
|
|
"InvestmentGoalCreate",
|
|
]
|