This commit is contained in:
master
2025-10-24 19:19:23 +03:00
parent d8253ec3af
commit 625299fa2b
72 changed files with 6070 additions and 151 deletions

View File

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