JiShe.IOT.Admin/src/JiShe.IOT.Domain.Shared/IOTGlobalFeatureConfigurator.cs

22 lines
720 B
C#
Raw Normal View History

2025-03-11 10:24:11 +08:00
namespace JiShe.IOT
{
public static class IOTGlobalFeatureConfigurator
{
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.
*
* YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
*
* Please refer to the documentation to lear more about the Global Features System:
* https://docs.abp.io/en/abp/latest/Global-Features
*/
});
}
}
}