mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 01:52:41 -04:00
12 lines
316 B
C#
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();
|
|
} |