websockets-client/WebSocketsChatApi/Controllers/WebSocketChatController.cs
2025-03-14 16:01:14 +03:00

12 lines
217 B
C#

using Microsoft.AspNetCore.Mvc;
namespace WebSocketsChatApi.Controllers;
[ApiController]
public class WebSocketChatController: ControllerBase
{
[Route("/chat")]
public async Task Chat()
{
}
}