10 lines
270 B
C#
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);
|
|
}
|