using Elsa.Features.Services; using Elsa.Tenants.Features; // ReSharper disable once CheckNamespace namespace Elsa.Tenants.Extensions; /// /// Extensions for that installs the feature. /// public static class ModuleExtensions { /// /// Installs and configures the feature. /// public static IModule UseTenants(this IModule module, Action? configure = default) { module.Configure(configure); return module; } }