ljsjdwe / interfaces /init.py
kepsmiling121's picture
Create interfaces/init.py
05eba2c verified
"""
Interface modules
"""
from .text_to_music import TextToMusicInterface
from .file_to_music import FileToMusicInterface
from .advanced_editor import AdvancedEditorInterface
from .batch_processor import BatchProcessorInterface
__all__ = [
"TextToMusicInterface",
"FileToMusicInterface",
"AdvancedEditorInterface",
"BatchProcessorInterface"
]