This commit is contained in:
Đăng Nguyễn
2025-10-28 17:28:46 +07:00
parent 6eeed8c7b4
commit 643a34a4b4
22 changed files with 1575 additions and 72 deletions

View File

@@ -0,0 +1,16 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace RobotApp.Controllers;
[Route("api/[controller]")]
[ApiController]
[Authorize]
public class RobotConfigsController(Services.Logger<ImagesController> Logger) : ControllerBase
{
[HttpGet]
[Route("plc")]
public void GetPLCConfig()
{
}
}