mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-25 22:28:35 -05:00
10 lines
281 B
C#
10 lines
281 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);
|
|
} |