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.

21 lines
544 B

2 years ago
1 year ago
2 years ago
1 year ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp;
  7. using Volo.Abp.Modularity;
  8. namespace Shentun.Peis.PlugIns.Extensions
  9. {
  10. internal class PeisPlugInsExtensionsModule : AbpModule
  11. {
  12. public override void OnApplicationInitialization(ApplicationInitializationContext context)
  13. {
  14. //var myService = context.ServiceProvider
  15. // .GetRequiredService<MyService>();
  16. //myService.Initialize();
  17. }
  18. }
  19. }