UNPKG

touchdesigner-mcp-server

Version:
13 lines (12 loc) 283 B
/** * Creates a success result with the provided data */ export function createSuccessResult(data) { return { success: true, data }; } /** * Creates an error result with the provided error */ export function createErrorResult(error) { return { success: false, error }; }