[HttpPost("api/workflow/invoke")] | |
public IActionResult Invoke() | |
{ | |
Task.Run(async ()=> await useCase.StartBackgroundWork()); | |
return Accepted(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment