using StellaOps.AuditPack.Models; namespace StellaOps.AuditPack.Services; /// /// Interface for replay execution. /// public interface IReplayExecutor { Task ExecuteAsync( IIsolatedReplayContext context, AuditBundleManifest manifest, ReplayExecutionOptions options, CancellationToken cancellationToken = default); }