Add project files.

This commit is contained in:
Dmitriy yawaflua Andreev
2024-07-28 21:47:13 +03:00
parent f39ae7b057
commit 7266036ccf
11 changed files with 332 additions and 0 deletions

15
Program.cs Normal file
View File

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