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 AiConversationsController : XIBaseV1EntityHubController { public AiConversationsController( ILogger logger, XAppConfiguration appConfiguration, IXIdentityProvider identityProvider, XValidationProvider validationProvider, IXAiConversationRepository repository, IHubContext> hub = null ) : base( logger, appConfiguration, identityProvider, validationProvider, repository, hub ) { } } }