2023-08-26 04:41:01 +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 BotSharp.Abstraction.Repositories;
|
2023-09-15 20:19:44 +00:00
|
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
2023-08-26 04:41:01 +00:00
|
|
|
global using BotSharp.Abstraction.Utilities;
|
|
|
|
|
global using BotSharp.Abstraction.Plugins;
|
2024-06-14 20:39:56 +00:00
|
|
|
global using BotSharp.Abstraction.Translation.Models;
|
2024-11-04 22:44:41 +00:00
|
|
|
global using BotSharp.Abstraction.SideCar.Attributes;
|
2025-02-12 16:21:28 +00:00
|
|
|
global using BotSharp.Core.Infrastructures;
|
2023-08-26 04:41:01 +00:00
|
|
|
global using Microsoft.Extensions.Configuration;
|
|
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
global using MongoDB.Bson;
|
2023-10-25 20:09:21 +00:00
|
|
|
global using MongoDB.Driver;
|
2024-06-14 22:10:25 +00:00
|
|
|
global using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
global using BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
|
global using BotSharp.Plugin.MongoStorage.Models;
|