UNPKG

@mseep/ableton-copilot-mcp

Version:
10 lines 357 B
import { Ableton } from 'ableton-js'; import { setupRecordModeListener } from './utils/record-utils.js'; export let ableton; export async function initAbleton(logger) { ableton = new Ableton({ logger }); // Establishes a connection with Live await ableton.start(); setupRecordModeListener(ableton.song); } //# sourceMappingURL=ableton.js.map