19 lines
452 B
Python
19 lines
452 B
Python
"""
|
|
Video Domain Layer.
|
|
|
|
Contains pure business logic and domain models for video operations.
|
|
No external dependencies - only Python standard library and domain concepts.
|
|
"""
|
|
|
|
from .models import VideoFile, VideoMetadata, StreamRange
|
|
from .interfaces import VideoRepository, VideoConverter, MetadataExtractor
|
|
|
|
__all__ = [
|
|
"VideoFile",
|
|
"VideoMetadata",
|
|
"StreamRange",
|
|
"VideoRepository",
|
|
"VideoConverter",
|
|
"MetadataExtractor",
|
|
]
|