init backend
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace AipsCore.Application.Abstract.Query;
|
||||
|
||||
public interface IQueryHandler<in TQuery, TResult>
|
||||
where TQuery : IQuery<TResult>
|
||||
{
|
||||
Task<TResult> HandleAsync(TQuery query, CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user