femto-backend/Femto.Modules.Auth/Application/Interface/Deauthenticate/DeauthenticateCommandHandler.cs
2025-05-29 00:39:40 +02:00

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();
}
}