feat(Assets): update asset services and background workers

This commit is contained in:
2026-08-09 21:01:39 +02:00
parent b57cc9894c
commit e0778b88ea
32 changed files with 1020 additions and 2062 deletions
+5 -2
View File
@@ -1,8 +1,11 @@
namespace FinlyticAssets.Util;
namespace FinlyticAssets.Util;
public class StringCodeGenerator
{
/// <summary>
/// Generates a W3C traceparent string for telemetry tracking.
/// </summary>
public static string GenerateTraceparent()
{
var traceId = Guid.NewGuid().ToString("N");
@@ -11,4 +14,4 @@ public class StringCodeGenerator
return $"00-{traceId}-{spanId}-01";
}
}
}