This commit is contained in:
Natlinux81
2025-04-21 16:55:15 +02:00
commit d5f6034a28
39 changed files with 15372 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Mvc;
namespace API.Controllers;
[ApiController]
[Route("api/[controller]")]
public class BaseApiController : ControllerBase
{
}