13 lines
288 B
Python
13 lines
288 B
Python
"""Shared kernel - Common domain concepts used across subdomains."""
|
|
|
|
from .exceptions import DomainException, ValidationError
|
|
from .value_objects import FilePath, FileSize, ImdbId
|
|
|
|
__all__ = [
|
|
"DomainException",
|
|
"ValidationError",
|
|
"ImdbId",
|
|
"FilePath",
|
|
"FileSize",
|
|
]
|