8 lines
379 B
C++
8 lines
379 B
C++
#pragma once
|
|
#include <task_flow/export/Taskflow_Trace.hpp>
|
|
#include <nlohmann/json.hpp>
|
|
#include <cstdint>
|
|
namespace aethera::web {
|
|
[[nodiscard]] nlohmann::json taskflow_trace_json(const Taskflow_Execution_Trace& trace, std::uint64_t sequence = 0, std::uint64_t correlation_id = 0, const nlohmann::json& captured_components = {}, const nlohmann::json& captured_backend = {});
|
|
}
|