commited scoobydoo

This commit is contained in:
2026-07-04 23:36:31 +02:00
parent 077ee48927
commit 6a061c6835
190 changed files with 1624 additions and 237 deletions
@@ -0,0 +1,23 @@
using Microsoft.AspNetCore.Mvc;
using Nexus.Application.Interfaces;
namespace Nexus.Api.Controllers;
[ApiController]
[Route("api/projects")]
public class ProjectsController : ControllerBase
{
private readonly IProjectService _service;
public ProjectsController(IProjectService service)
{
_service = service;
}
[HttpGet]
public async Task<IActionResult> GetAll()
{
var result = await _service.GetAllAsync();
return Ok(result);
}
}