11 lines
292 B
C#
11 lines
292 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using StellaOps.Graph.Api.Contracts;
|
|
|
|
namespace StellaOps.Graph.Api.Services;
|
|
|
|
public interface IGraphLineageService
|
|
{
|
|
Task<GraphLineageResponse> GetLineageAsync(string tenant, GraphLineageRequest request, CancellationToken ct);
|
|
}
|