Files
Govor/Govor.API/Controllers/ChatLoadController.cs
T
2025-07-08 22:28:04 +07:00

16 lines
361 B
C#

using Govor.Application.Interfaces;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Govor.API.Controllers;
[ApiController]
[Authorize]
[Route("api/chats")]
public class ChatLoadController : Controller
{
public ChatLoadController(ILogger<ChatLoadController> logger, IMessagesLoader messagesLoader)
{
}
}