12 lines
339 B
C#
12 lines
339 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Hyperbar.Widget.Contextual;
|
|
|
|
public class ContextualWidgetBuilder :
|
|
IWidgetBuilder
|
|
{
|
|
public void Create(IServiceCollection services) => services
|
|
.AddConfiguration<ContextualWidgetConfiguration>()
|
|
.AddWidgetTemplate<ContextualWidgetViewModel>();
|
|
}
|