Merge pull request #32 from MajMcCloud/development

Updating to 5.2
This commit is contained in:
Florian Zevedei
2022-11-23 13:15:35 +01:00
committed by GitHub
68 changed files with 1605 additions and 264 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
using System;
using TelegramBotBase.Builder;
namespace SystemCommandsBot
{
@@ -19,7 +20,9 @@ namespace SystemCommandsBot
return;
}
var bot = new TelegramBotBase.BotBase<forms.StartForm>(BotConfig.ApiKey);
var bot = BotBaseBuilder.Create()
.QuickStart<forms.StartForm>(BotConfig.ApiKey)
.Build();
bot.Start();