This commit is contained in:
2026-04-10 23:50:57 +03:30
parent 0ddf8a34c5
commit 9d568c9893
3 changed files with 10 additions and 1 deletions
+8
View File
@@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using xAiService.DI;
using xCommons.Extensions;
using xFileService.DI;
using xMessageService.DI;
@@ -176,6 +177,13 @@ namespace xServices.DI
//
// Terms and Conditions Service ...
services.AddXTermsConditionsService(lifeTime: lifeTime);
//
// Ai Service ...
services.AddXAIService(
lifeTime: lifeTime,
configuration: configuration
);
}
#endregion
}