using Acl.Application;
namespace Acl.Infrastructure;
/// The only code that talks to OpenZaak's Zaken API (ADR-0001).
public sealed class OpenZaakGateway(HttpClient http, OpenZaakOptions options) : IZaakGateway
{
public Task OpenZaakAsync(ZaakRequest request, CancellationToken ct = default)
=> throw new NotImplementedException();
}