2023-11-09 20:02:57 +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;
|
|
|
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
global using Microsoft.Extensions.Configuration;
|
|
|
|
|
global using Microsoft.Extensions.Logging;
|
|
|
|
|
global using BotSharp.Abstraction.Functions;
|
|
|
|
|
global using BotSharp.Abstraction.Functions.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Agents.Enums;
|
|
|
|
|
global using BotSharp.Abstraction.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Agents;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations;
|
|
|
|
|
global using BotSharp.Abstraction.Plugins;
|
2023-12-06 22:55:55 +00:00
|
|
|
global using BotSharp.Abstraction.Conversations.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Routing.Settings;
|
|
|
|
|
global using BotSharp.Abstraction.Conversations.Enums;
|
|
|
|
|
global using BotSharp.Abstraction.Users.Models;
|
|
|
|
|
global using BotSharp.Abstraction.Users;
|
|
|
|
|
global using Twilio.AspNet.Common;
|
|
|
|
|
global using Twilio.AspNet.Core;
|
|
|
|
|
global using Twilio.TwiML;
|
|
|
|
|
global using Twilio.TwiML.Voice;
|
|
|
|
|
global using BotSharp.Plugin.Twilio.Settings;
|