pushed api files

pushed middlewares
This commit is contained in:
ElenitaMLG
2024-04-07 02:49:34 +03:00
parent 55eaa0d53a
commit 2ccec617a5
11 changed files with 390 additions and 54 deletions
+5 -6
View File
@@ -1,10 +1,9 @@
using Microsoft.AspNetCore.Mvc;
namespace HealthcareManager.API.Controllers
namespace HealthcareManager.API.Controllers;
[Route("api/v1/[controller]")]
[ApiController]
public abstract class BaseApiController : ControllerBase
{
[Route("api/v1/[controller]")]
[ApiController]
public abstract class BaseApiController : ControllerBase
{
}
}