Source: data/dasf/responseHandlerRegistry.js

import { handleTimeseriesData} from './handlers/timeseriesPlot.js';
import { handleObjectDisplay } from './handlers/default.js';

/**
 * Registry object that maps response types to their corresponding handler functions.
 */
export const responseHandlerRegistry = {
    "timeseries": handleTimeseriesData,
    "default": handleObjectDisplay,
};