Files
REST_SERVER/VERAG_REST_SERVER/Global.asax.vb
2023-03-29 23:26:18 +02:00

17 lines
289 B
VB.net

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