Files
AIPS/dotnet/AipsWebApi/Controllers/ShapeController.cs
Andrija Stevanovic 912b34f045 Merge branch 'main' into hotfix-create-rectangle
# Conflicts:
#	dotnet/AipsWebApi/Controllers/ShapeController.cs
2026-02-13 22:09:06 +01:00

20 lines
589 B
C#

using AipsCore.Application.Abstract;
using AipsCore.Application.Models.Shape.Command.CreateRectangle;
using AipsCore.Application.Models.Shape.Command.CreateArrow;
using AipsCore.Application.Models.Shape.Command.CreateLine;
using AipsCore.Application.Models.Shape.Command.CreateTextShape;
using Microsoft.AspNetCore.Mvc;
namespace AipsWebApi.Controllers;
[ApiController]
[Route("[controller]")]
public class ShapeController : ControllerBase
{
private readonly IDispatcher _dispatcher;
public ShapeController(IDispatcher dispatcher)
{
_dispatcher = dispatcher;
}
}