using Femto.Common.Domain; using Femto.Modules.Auth.Data; namespace Femto.Modules.Auth.Application.Interface.Deauthenticate; internal class DeauthenticateCommandHandler(AuthContext context) : ICommandHandler { public async Task Handle(DeauthenticateCommand request, CancellationToken cancellationToken) { throw new NotImplementedException(); } }