Files
git.stella-ops.org/src/StellaOps.Zastava.Observer/Backend/IRuntimePolicyClient.cs
master 625299fa2b up
2025-10-24 19:19:23 +03:00

10 lines
270 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Zastava.Observer.Backend;
internal interface IRuntimePolicyClient
{
Task<RuntimePolicyResponse> EvaluateAsync(RuntimePolicyRequest request, CancellationToken cancellationToken = default);
}