12 lines
286 B
Python
12 lines
286 B
Python
"""
|
|
Podcast Services Module
|
|
|
|
Dedicated services for podcast generation functionality.
|
|
Separate from story writer services to maintain clear separation of concerns.
|
|
"""
|
|
|
|
from .video_combination_service import PodcastVideoCombinationService
|
|
|
|
__all__ = ["PodcastVideoCombinationService"]
|
|
|