Files
Telegram-Bot-Template/Program.cs
Dmitriy yawaflua Andreev 7266036ccf Add project files.
2024-07-28 21:47:13 +03:00

16 lines
308 B
C#

namespace TG_Bot_Template
{
public class Program
{
public static void Main(string[] args)
{
new WebHostBuilder()
.UseKestrel(k => k.ListenAnyIP(80))
.UseStartup<Startup>()
.Build()
.Run();
}
}
}