BotSharp/src/Infrastructure/BotSharp.Core/Using.cs

67 lines
3 KiB
C#
Raw Normal View History

2023-06-18 02:56:22 +00:00
global using BotSharp.Abstraction.Agents;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Agents.Models;
global using BotSharp.Abstraction.Agents.Settings;
2023-06-18 02:56:22 +00:00
global using BotSharp.Abstraction.Conversations;
2023-08-30 23:29:01 +00:00
global using BotSharp.Abstraction.Conversations.Models;
global using BotSharp.Abstraction.Conversations.Settings;
global using BotSharp.Abstraction.Crontab.Models;
2024-05-06 06:51:59 +00:00
global using BotSharp.Abstraction.Files;
2024-06-06 19:57:41 +00:00
global using BotSharp.Abstraction.Files.Enums;
global using BotSharp.Abstraction.Files.Models;
2024-08-07 21:56:57 +00:00
global using BotSharp.Abstraction.Files.Utilities;
global using BotSharp.Abstraction.Functions.Models;
global using BotSharp.Abstraction.Infrastructures.Events;
global using BotSharp.Abstraction.Knowledges.Models;
global using BotSharp.Abstraction.Loggers.Services;
global using BotSharp.Abstraction.MCP.Models;
global using BotSharp.Abstraction.MCP.Services;
global using BotSharp.Abstraction.Messaging.Enums;
global using BotSharp.Abstraction.Plugins;
global using BotSharp.Abstraction.Repositories;
global using BotSharp.Abstraction.Repositories.Filters;
global using BotSharp.Abstraction.Roles;
global using BotSharp.Abstraction.Roles.Models;
2025-07-15 21:52:13 +00:00
global using BotSharp.Abstraction.Routing.Enums;
global using BotSharp.Abstraction.Routing;
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.Enums;
global using BotSharp.Abstraction.Statistics.Models;
2025-01-24 05:45:43 +00:00
global using BotSharp.Abstraction.Statistics.Services;
global using BotSharp.Abstraction.Translation;
global using BotSharp.Abstraction.Translation.Attributes;
global using BotSharp.Abstraction.Users;
global using BotSharp.Abstraction.Utilities;
2025-03-06 17:11:45 +00:00
global using BotSharp.Abstraction.Loggers.Services;
global using BotSharp.Abstraction.Infrastructures.Events;
2025-05-05 04:20:52 +00:00
global using BotSharp.Abstraction.Templating.Constants;
2025-05-07 21:34:39 +00:00
global using BotSharp.Abstraction.Realtime.Models.Session;
2025-07-28 22:41:28 +00:00
global using BotSharp.Abstraction.Conversations.Enums;
global using BotSharp.Abstraction.Hooks;
global using BotSharp.Abstraction.MessageHub.Models;
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;
global using BotSharp.Core.Loggers.Services;
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;
2025-05-07 21:34:39 +00:00
global using BotSharp.Core.Infrastructures.Websocket;
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;
global using BotSharp.Core.Users.Services;
global using EntityFrameworkCore.BootKit;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Net.Http;
global using System.Net.Mime;
global using System.Text;
global using System.Text.Json;
global using System.Threading;
global using System.Threading.Tasks;