using Acl.Application; namespace Acl.Infrastructure; /// The only code that talks to the Objecten API (ADR-0028). public sealed class ObjectenGateway(HttpClient http, ObjectenOptions options, IClock clock) : IRegisterRecordGateway { public Task UpsertAsync(RegisterRecord record, CancellationToken ct = default) => throw new NotImplementedException(); }