2022-06-05 20:49:47 +00:00
|
|
|
using Elsa.Features.Services;
|
|
|
|
|
using Elsa.Workflows.Api.Features;
|
|
|
|
|
|
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
|
|
|
namespace Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
2022-11-23 10:20:35 +00:00
|
|
|
public static class ModuleExtensions
|
2022-06-05 20:49:47 +00:00
|
|
|
{
|
2022-12-30 12:11:29 +00:00
|
|
|
public static IModule UseWorkflowsApi(this IModule module, Action<WorkflowsApiFeature>? configure = default)
|
2022-06-05 20:49:47 +00:00
|
|
|
{
|
|
|
|
|
module.Configure(configure);
|
|
|
|
|
return module;
|
|
|
|
|
}
|
|
|
|
|
}
|