Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Interceptors/IDryRunInterceptor.cs
2026-03-19 23:53:42 +02:00

12 lines
316 B
C#

namespace Cleanuparr.Infrastructure.Interceptors;
public interface IDryRunInterceptor
{
void Intercept(Action action);
Task InterceptAsync(Delegate action, params object[] parameters);
Task<T?> InterceptAsync<T>(Delegate action, params object[] parameters);
Task<bool> IsDryRunEnabled();
}