BotSharp/src/Plugins/BotSharp.Plugin.TelegramBots/TelegramBotsPlugin.cs

19 lines
525 B
C#
Raw Normal View History

2023-11-22 16:27:55 +00:00
using BotSharp.Abstraction.Plugins;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using System;
namespace BotSharp.Plugin.TelegramBots
{
public class TelegramBotsPlugin : IBotSharpPlugin
{
public string Name => "Telegram Bots";
public string Description => "Bots are small applications that run entirely within the Telegram app.";
public void RegisterDI(IServiceCollection services, IConfiguration config)
{
}
}
}