File size: 360 Bytes
05eba2c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
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"
]