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

20 lines
593 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
{
2024-01-12 22:20:22 +00:00
public string Id => "6cc8c2f0-0958-4ace-adec-1df609ec9e00";
2023-11-22 16:27:55 +00:00
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)
{
}
}
}