JiShe.CollectBus/shared/JiShe.CollectBus.Domain.Shared/CollectBusGlobalFeatureConfigurator.cs
2025-04-17 20:28:50 +08:00

20 lines
590 B
C#

using Volo.Abp.Threading;
namespace JiShe.CollectBus;
public static class CollectBusGlobalFeatureConfigurator
{
private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
public static void Configure()
{
OneTimeRunner.Run(() =>
{
/* You can configure (enable/disable) global features of the used modules here.
* Please refer to the documentation to learn more about the Global Features System:
* https://docs.abp.io/en/abp/latest/Global-Features
*/
});
}
}