BotSharp/src/Infrastructure/BotSharp.OpenAPI/Using.cs

31 lines
1.3 KiB
C#
Raw Normal View History

2023-08-19 00:15:02 +00:00
global using System;
global using System.Collections.Generic;
global using System.Text;
global using System.Threading.Tasks;
global using System.Linq;
global using System.Text.Json;
2023-12-04 23:42:46 +00:00
global using System.Net.Http.Headers;
global using Microsoft.AspNetCore.Http;
2023-08-19 00:15:02 +00:00
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Logging;
global using BotSharp.Abstraction.Plugins;
global using BotSharp.Abstraction.Agents;
global using BotSharp.Abstraction.Conversations;
global using BotSharp.Abstraction.Knowledges;
global using BotSharp.Abstraction.Users;
2023-12-04 23:42:46 +00:00
global using BotSharp.Abstraction.Users.Models;
2023-08-19 00:15:02 +00:00
global using BotSharp.Abstraction.Utilities;
global using BotSharp.Abstraction.Agents.Settings;
2023-12-04 23:42:46 +00:00
global using BotSharp.Abstraction.Conversations.Settings;
global using BotSharp.Abstraction.Agents.Enums;
global using BotSharp.Abstraction.Conversations.Enums;
global using BotSharp.Abstraction.Conversations.Models;
global using BotSharp.Abstraction.Models;
global using BotSharp.Abstraction.Repositories.Filters;
2024-05-06 07:59:03 +00:00
global using BotSharp.Abstraction.Files.Models;
global using BotSharp.Abstraction.Files;
2023-12-04 23:42:46 +00:00
global using BotSharp.OpenAPI.ViewModels.Conversations;
global using BotSharp.OpenAPI.ViewModels.Users;
global using BotSharp.OpenAPI.ViewModels.Agents;