Added Handler registrations in IServiceCollectionExtensions

This commit is contained in:
TheXamlGuy
2024-01-06 15:09:11 +00:00
parent e1c7846e45
commit a77c356389
8 changed files with 106 additions and 19 deletions
@@ -0,0 +1,11 @@
namespace Hyperbar.Windows;
public class KeyAcceleratorCommandHandler :
ICommandHandler<KeyAcceleratorCommand>
{
public ValueTask<Unit> Handle(KeyAcceleratorCommand command,
CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}