Files
Aethera/mcp/core/runtime/Taskflow_Trace_Json.hpp
T

11 lines
282 B
C++

#pragma once
#include <frame.hpp>
#include <nlohmann/json.hpp>
namespace aethera::web {
[[nodiscard]] nlohmann::json taskflow_trace_json(
const Taskflow_Frame_Trace& trace,
const nlohmann::json& captured_components = {},
const nlohmann::json& captured_backend = {});
}