Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandBuilder.cs
T
2024-01-05 17:34:09 +00:00

15 lines
362 B
C#

using Hyperbar.Extensions;
using Hyperbar.Lifecycles;
using Microsoft.Extensions.DependencyInjection;
namespace Hyperbar.Desktop.Contextual;
public class ContextualCommandBuilder :
ICommandBuilder
{
public void Create(IServiceCollection services)
{
services.AddCommandTemplate<ContextualCommandViewModel, ContextualCommandView>();
}
}