2023-05-27 01:58:31 +00:00
|
|
|
global using System;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Text;
|
|
|
|
|
global using System.Threading.Tasks;
|
2023-06-10 02:56:04 +00:00
|
|
|
global using System.Linq;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using System.Text.Json;
|
2024-07-16 22:17:38 +00:00
|
|
|
global using System.Net.Mime;
|
|
|
|
|
global using System.Net.Http;
|
|
|
|
|
global using System.Threading;
|
2023-06-12 13:28:49 +00:00
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using Microsoft.Extensions.Logging;
|
2023-06-11 23:46:02 +00:00
|
|
|
global using EntityFrameworkCore.BootKit;
|
2024-02-28 16:21:14 +00:00
|
|
|
global using BotSharp.Abstraction.Routing;
|
2023-08-14 22:14:05 +00:00
|
|
|
global using BotSharp.Abstraction.Plugins;
|
2023-06-18 02:56:22 +00:00
|
|
|
global using BotSharp.Abstraction.Agents;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations;
|
2024-12-09 00:29:04 +00:00
|
|
|
global using BotSharp.Abstraction.Crontab.Models;
|
2023-06-18 02:56:22 +00:00
|
|
|
global using BotSharp.Abstraction.Users;
|
2024-11-13 23:16:49 +00:00
|
|
|
global using BotSharp.Abstraction.Roles;
|
|
|
|
|
global using BotSharp.Abstraction.Roles.Models;
|
2023-07-21 15:15:30 +00:00
|
|
|
global using BotSharp.Abstraction.Utilities;
|
2023-08-30 23:29:01 +00:00
|
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Agents.Settings;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations.Settings;
|
2023-09-15 20:19:44 +00:00
|
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
2024-02-28 20:40:59 +00:00
|
|
|
global using BotSharp.Abstraction.Agents.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Functions.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Repositories;
|
|
|
|
|
global using BotSharp.Abstraction.Repositories.Filters;
|
2024-04-22 19:29:21 +00:00
|
|
|
global using BotSharp.Abstraction.Translation;
|
2024-05-06 06:51:59 +00:00
|
|
|
global using BotSharp.Abstraction.Files;
|
2024-05-03 19:57:44 +00:00
|
|
|
global using BotSharp.Abstraction.Files.Models;
|
2024-06-06 19:57:41 +00:00
|
|
|
global using BotSharp.Abstraction.Files.Enums;
|
2024-08-07 21:56:57 +00:00
|
|
|
global using BotSharp.Abstraction.Files.Utilities;
|
2024-05-03 18:17:14 +00:00
|
|
|
global using BotSharp.Abstraction.Translation.Attributes;
|
|
|
|
|
global using BotSharp.Abstraction.Messaging.Enums;
|
2024-09-13 22:23:05 +00:00
|
|
|
global using BotSharp.Abstraction.Knowledges.Models;
|
2024-11-04 22:44:41 +00:00
|
|
|
global using BotSharp.Abstraction.SideCar.Attributes;
|
2025-01-24 05:45:43 +00:00
|
|
|
global using BotSharp.Abstraction.Statistics.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Statistics.Enums;
|
|
|
|
|
global using BotSharp.Abstraction.Statistics.Services;
|
2023-06-11 23:46:02 +00:00
|
|
|
global using BotSharp.Core.Repository;
|
2024-02-28 16:21:14 +00:00
|
|
|
global using BotSharp.Core.Routing;
|
2023-06-18 02:56:22 +00:00
|
|
|
global using BotSharp.Core.Agents.Services;
|
|
|
|
|
global using BotSharp.Core.Conversations.Services;
|
|
|
|
|
global using BotSharp.Core.Infrastructures;
|
2023-09-08 17:03:49 +00:00
|
|
|
global using BotSharp.Core.Users.Services;
|
2025-01-24 05:45:43 +00:00
|
|
|
global using BotSharp.Core.Statistics.Services;
|
2024-11-08 18:10:15 +00:00
|
|
|
global using BotSharp.Abstraction.Infrastructures.Events;
|