Files
git.stella-ops.org/src/Graph/StellaOps.Graph.Api/Services/IOverlayService.cs
StellaOps Bot 1c782897f7
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
up
2025-11-26 07:47:08 +02:00

13 lines
329 B
C#

using StellaOps.Graph.Api.Contracts;
namespace StellaOps.Graph.Api.Services;
public interface IOverlayService
{
Task<IDictionary<string, Dictionary<string, OverlayPayload>>> GetOverlaysAsync(
string tenant,
IEnumerable<string> nodeIds,
bool sampleExplain,
CancellationToken ct = default);
}