feat: reggaeton production system with intelligent sample selection and FLP generation
This commit is contained in:
15
mcp/protocol/__init__.py
Normal file
15
mcp/protocol/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""FL-MCP Protocol — SysEx encoding/decoding and MIDI transport."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from .sysex import encode_command, decode_command, nibble_encode, nibble_decode, SYSEX_ID
|
||||
from .transport import MidiTransport
|
||||
|
||||
__all__ = [
|
||||
"nibble_encode",
|
||||
"nibble_decode",
|
||||
"encode_command",
|
||||
"decode_command",
|
||||
"SYSEX_ID",
|
||||
"MidiTransport",
|
||||
]
|
||||
Reference in New Issue
Block a user