17 lines
289 B
VB.net
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
|