mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-19 11:17:50 -05:00
10 lines
270 B
C#
10 lines
270 B
C#
namespace 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);
|
|
} |