mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
15 lines
295 B
C#
15 lines
295 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
||
|
namespace MalwareMultiScan.Api.Controllers
|
||
|
{
|
||
|
[ApiController]
|
||
|
[Route("queue")]
|
||
|
[Produces("application/json")]
|
||
|
public class QueueController : Controller
|
||
|
{
|
||
|
public IActionResult Index()
|
||
|
{
|
||
|
return Ok();
|
||
|
}
|
||
|
}
|
||
|
}
|