13 lines
250 B
C#
13 lines
250 B
C#
using System.Web.Http;
|
|
|
|
namespace API
|
|
{
|
|
public class WebApiApplication : System.Web.HttpApplication
|
|
{
|
|
protected void Application_Start()
|
|
{
|
|
GlobalConfiguration.Configure(WebApiConfig.Register);
|
|
}
|
|
}
|
|
}
|