misc
This commit is contained in:
parent
fbc6f562e3
commit
d7e0c59559
31 changed files with 249 additions and 57 deletions
|
@ -4,5 +4,7 @@ namespace Femto.Modules.Auth.Application;
|
|||
|
||||
public interface IAuthModule
|
||||
{
|
||||
Task<TResponse> PostCommand<TResponse>(ICommand<TResponse> command, CancellationToken cancellationToken = default);
|
||||
Task Command(ICommand command, CancellationToken cancellationToken = default);
|
||||
Task<TResponse> Command<TResponse>(ICommand<TResponse> command, CancellationToken cancellationToken = default);
|
||||
Task<TResponse> Query<TResponse>(IQuery<TResponse> query, CancellationToken cancellationToken = default);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue