File size: 269 Bytes
b435029 | 1 2 3 4 5 6 7 8 9 | import { executeMatplotlibRender } from '../../services/plot-runtime/matplotlib-executor'
import type { PlotRenderPort } from './plot-render-port'
export function createMatplotlibPlotRenderPort(): PlotRenderPort {
return {
execute: executeMatplotlibRender
}
}
|