18 lines
380 B
C#
18 lines
380 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using System.Web.Http;
|
|||
|
using System.Web.Routing;
|
|||
|
|
|||
|
namespace Simple_Bot_Application
|
|||
|
{
|
|||
|
public class WebApiApplication : System.Web.HttpApplication
|
|||
|
{
|
|||
|
protected void Application_Start()
|
|||
|
{
|
|||
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|