临河任务调度
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }