Files
xSaherElmAiApi/Controllers/V1/Entities/AiMessagesController.cs
T
2026-04-27 21:43:06 +03:30

33 lines
978 B
C#

using System;
using Microsoft.AspNetCore.SignalR;
using Microsoft.Extensions.Logging;
using xAiApi.AI.Interfaces.Entities;
using xAiApi.AI.Models.Entities;
using xAiApi.Base;
using xCommons.Configurations;
using xCommons.Providers;
using xIdentityService.Interfaces;
using xPushService.Base;
namespace xAiApi.Controllers.V1.Entities
{
public class AiMessagesController : XIBaseV1EntityHubController<XAiMessage, Guid>
{
public AiMessagesController(
ILogger<AiMessagesController> logger,
XAppConfiguration appConfiguration,
IXIdentityProvider identityProvider,
XValidationProvider validationProvider,
IXAiMessageRepository repository,
IHubContext<XBaseEntityHub<XAiMessage, Guid>> hub = null
) : base(
logger,
appConfiguration,
identityProvider,
validationProvider,
repository,
hub
)
{ }
}
}