mirror of
https://github.com/yawaflua/WebSockets.git
synced 2026-02-04 14:04:11 +02:00
15 lines
298 B
C#
15 lines
298 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Examples.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("/api/v1/test")]
|
|
public class TestDefaultController : ControllerBase
|
|
{
|
|
|
|
[HttpGet]
|
|
public async Task<IActionResult> TestController([FromBody] string TextTest)
|
|
{
|
|
return Ok("Test");
|
|
}
|
|
} |