- Add AI code generation requirements to AGENTS.md - Add module-level docstrings to all 46 Python modules - Add detailed Google-style docstrings to all classes and functions - Remove all inline comments following self-documenting code principle - Include Args, Returns, Raises sections in function docstrings - Add Attributes and Examples sections to class docstrings
13 lines
382 B
Python
13 lines
382 B
Python
"""Value objects.
|
|
|
|
This module re-exports all domain value objects that represent
|
|
immutable validated domain concepts.
|
|
"""
|
|
|
|
from app.domain.value_objects.base import ValueObject
|
|
from app.domain.value_objects.content import Content
|
|
from app.domain.value_objects.slug import Slug
|
|
from app.domain.value_objects.title import Title
|
|
|
|
__all__ = ["ValueObject", "Title", "Content", "Slug"]
|