You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
718 B

  1. using Volo.Abp.Threading;
  2. namespace Shentun.WebPeis;
  3. public static class WebPeisGlobalFeatureConfigurator
  4. {
  5. private static readonly OneTimeRunner OneTimeRunner = new OneTimeRunner();
  6. public static void Configure()
  7. {
  8. OneTimeRunner.Run(() =>
  9. {
  10. /* You can configure (enable/disable) global features of the used modules here.
  11. *
  12. * YOU CAN SAFELY DELETE THIS CLASS AND REMOVE ITS USAGES IF YOU DON'T NEED TO IT!
  13. *
  14. * Please refer to the documentation to lear more about the Global Features System:
  15. * https://docs.abp.io/en/abp/latest/Global-Features
  16. */
  17. });
  18. }
  19. }