Refactored to flow Hub Packaging directory structures

This commit is contained in:
2025-05-27 18:24:39 -05:00
parent 93362b209b
commit 73294b19b4
24 changed files with 222 additions and 174 deletions

View File

@@ -0,0 +1,15 @@
const conversationId = req.body.conversationId;
const startTime = req.body.startTime;
(async () => {
try {
const span = await latencySpan().startSpan(conversationId, startTime);
res.send(span);
} catch (error) {
console.log(error.message);
res.send({
error: error.message,
});
}
})();