2025-09-05 14:59:21 +08:00

10 lines
235 B
JavaScript

import { Tracing } from "./internal/trace_events/tracing.mjs";
export const createTracing = function() {
return new Tracing();
};
export const getEnabledCategories = () => "";
export default {
createTracing,
getEnabledCategories
};