survey-webapp/SurveyBackend/SurveyBackend.API/Controllers/TestController.cs
2025-04-21 04:15:40 +05:00

10 lines
No EOL
186 B
C#

using Microsoft.AspNetCore.Mvc;
using SurveyLib.Core.Services;
namespace SurveyBackend.Controllers;
[ApiController]
[Route("api/test")]
public class TestController : ControllerBase
{
}