mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 17:41:57 -04:00
6 lines
154 B
C#
6 lines
154 B
C#
namespace Cleanuparr.Infrastructure.Features.Jobs;
|
|
|
|
public interface IHandler
|
|
{
|
|
Task ExecuteAsync(CancellationToken cancellationToken = default);
|
|
} |