11 lines
286 B
C++
11 lines
286 B
C++
#pragma once
|
|
#include <frame.hpp>
|
|
#include <nlohmann/json_fwd.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 = {});
|
|
}
|