2023-11-24 23:26:33 +00:00
|
|
|
global using System;
|
|
|
|
|
global using System.IO;
|
|
|
|
|
global using System.Text.Json;
|
|
|
|
|
global using System.Threading;
|
|
|
|
|
global using System.Threading.Tasks;
|
|
|
|
|
global using System.Collections.Generic;
|
|
|
|
|
global using System.Runtime.Serialization;
|
|
|
|
|
global using System.Text.Json.Serialization;
|
|
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
global using Microsoft.Extensions.Logging;
|
|
|
|
|
global using Microsoft.Extensions.Configuration;
|
|
|
|
|
global using BotSharp.Abstraction.Plugins;
|
|
|
|
|
global using BotSharp.Plugin.MetaMessenger.GraphAPIs;
|
|
|
|
|
global using BotSharp.Plugin.MetaMessenger.Settings;
|
|
|
|
|
global using BotSharp.Abstraction.Utilities;
|
|
|
|
|
global using BotSharp.Plugin.MetaMessenger.Services;
|
|
|
|
|
global using BotSharp.Plugin.MetaMessenger.WebhookModels;
|
|
|
|
|
global using BotSharp.Plugin.MetaMessenger.MessagingModels;
|
|
|
|
|
global using BotSharp.Abstraction.Messaging;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations;
|
|
|
|
|
global using BotSharp.Abstraction.Messaging.Models.RichContent.Template;
|
2024-02-16 21:58:39 +00:00
|
|
|
global using BotSharp.Abstraction.Messaging.Enums;
|