Files
REST_SERVER/VERAG_REST_SERVER/Global.asax.vb
2023-02-22 09:58:13 +01:00

13 lines
234 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