临河任务调度
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.

26 lines
595B

  1. using Microsoft.AspNetCore.Mvc;
  2. using System.Net.Mail;
  3. using System.Threading.Tasks;
  4. using Volo.Abp.AspNetCore.Mvc;
  5. using Volo.Abp.BackgroundJobs;
  6. namespace Himp.TaskScheduling.Controllers;
  7. public class HomeController : AbpController
  8. {
  9. public HomeController()
  10. {
  11. }
  12. public async Task<ActionResult> Index()
  13. {
  14. //await _backgroundJobManager.EnqueueAsync(
  15. // new WorkflowArgs
  16. // {
  17. // ParamConfigs = new System.Collections.Generic.List<ParamConfigDto>()
  18. // }
  19. //); ;
  20. return Redirect("~/swagger");
  21. }
  22. }