12 lines
No EOL
390 B
C#
12 lines
No EOL
390 B
C#
using Femto.Common.Domain;
|
|
using Femto.Modules.Auth.Data;
|
|
|
|
namespace Femto.Modules.Auth.Application.Interface.Deauthenticate;
|
|
|
|
internal class DeauthenticateCommandHandler(AuthContext context) : ICommandHandler<DeauthenticateCommand>
|
|
{
|
|
public async Task Handle(DeauthenticateCommand request, CancellationToken cancellationToken)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |