Files
REST_SERVER/VERAG_REST_SERVER/Global.asax.vb
2023-02-27 09:12:32 +01:00

15 lines
236 B
VB.net

Imports System.Web.Http
Public Class WebApiApplication
Inherits System.Web.HttpApplication
Protected Sub Application_Start()
GlobalConfiguration.Configure(AddressOf WebApiConfig.Register)
End Sub
End Class