Full removal of SourceGen Meditor. Will revisit in good time.

This commit is contained in:
Daniel Clark
2022-12-17 20:27:52 +00:00
parent 0017aab4b7
commit 369e359622
49 changed files with 134 additions and 108 deletions
@@ -0,0 +1,8 @@
namespace Toolkit.Framework.Foundation;
public interface ICommandHandler<in TCommand> : ICommandHandler<TCommand, Unit> where TCommand : ICommand<Unit> { }
public interface ICommandHandler<in TCommand, TResponse> where TCommand : ICommand<TResponse>
{
ValueTask<TResponse> Handle(TCommand command, CancellationToken cancellationToken);
}