Files
Parasha/SvetoforVKBot/Global.asax.cs
2021-10-19 06:04:52 +03:00

18 lines
447 B
C#

using System.Web.Mvc;
using System.Web.Routing;
using System.Web.Http;
using SvetoforVKBot.App_Start;
namespace SvetoforVKBot
{
public class MvcApplication : System.Web.HttpApplication
{
async protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
GlobalConfiguration.Configure(WebApiConfig.Register);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
}
}