14 lines
406 B
C#
14 lines
406 B
C#
|
|
using Elsa.Features.Services;
|
||
|
|
using Elsa.Workflows.Api.Features;
|
||
|
|
|
||
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
namespace Microsoft.Extensions.DependencyInjection;
|
||
|
|
|
||
|
|
public static class DependencyInjectionExtensions
|
||
|
|
{
|
||
|
|
public static IModule UseWorkflowApiEndpoints(this IModule module, Action<WorkflowsApiFeature>? configure = default)
|
||
|
|
{
|
||
|
|
module.Configure(configure);
|
||
|
|
return module;
|
||
|
|
}
|
||
|
|
}
|