Files
Aaru/DiscImageChef.Server/Global.asax.cs

47 lines
1.8 KiB
C#
Raw Normal View History

2017-06-03 01:10:46 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Global.asax.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
2017-06-03 01:10:46 +01:00
//
// Component : DiscImageChef Server.
2017-06-03 01:10:46 +01:00
//
// --[ Description ] ----------------------------------------------------------
//
// ASP.NET global definitions.
2017-06-03 01:10:46 +01:00
//
// --[ License ] --------------------------------------------------------------
//
// This library is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation; either version 2.1 of the
2017-06-03 01:10:46 +01:00
// License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2017-06-03 01:10:46 +01:00
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
2017-06-03 01:10:46 +01:00
//
// ----------------------------------------------------------------------------
2018-12-29 17:34:38 +00:00
// Copyright © 2011-2019 Natalia Portillo
2017-06-03 01:10:46 +01:00
// ****************************************************************************/
2017-06-03 01:10:46 +01:00
using System.Web;
using System.Web.Http;
using System.Web.Routing;
2017-06-03 01:10:46 +01:00
namespace DiscImageChef.Server
{
2017-06-03 01:10:46 +01:00
public class Global : HttpApplication
{
2017-06-03 01:10:46 +01:00
protected void Application_Start()
{
GlobalConfiguration.Configure(WebApiConfig.Register);
RouteConfig.RegisterRoutes(RouteTable.Routes);
2017-06-03 01:10:46 +01:00
}
}
2017-12-19 20:33:03 +00:00
}