bonuska2/SimpleTGBot/Program.cs
github-classroom[bot] 222fbfcefc Initial commit
2025-04-12 09:54:46 +00:00

11 lines
313 B
C#

namespace SimpleTGBot;
public static class Program
{
// Метод main немного видоизменился для асинхронной работы
public static async Task Main(string[] args)
{
TelegramBot telegramBot = new TelegramBot();
await telegramBot.Run();
}
}