Full removal of SourceGen Meditor. Will revisit in good time.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace Toolkit.Framework.Foundation;
|
||||
|
||||
public interface IRequestHandler<in TRequest> : IRequestHandler<TRequest, Unit> where TRequest : IRequest<Unit>
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public interface IRequestHandler<in TRequest, TResponse> where TRequest : IRequest<TResponse>
|
||||
{
|
||||
ValueTask<TResponse> Handle(TRequest request, CancellationToken cancellationToken);
|
||||
}
|
||||
Reference in New Issue
Block a user