mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-07 14:18:07 +08:00
15 lines
276 B
C#
15 lines
276 B
C#
![]() |
using Microsoft.Owin;
|
|||
|
using Owin;
|
|||
|
|
|||
|
[assembly: OwinStartupAttribute(typeof(OpenAuth.Mvc.Startup))]
|
|||
|
namespace OpenAuth.Mvc
|
|||
|
{
|
|||
|
public partial class Startup
|
|||
|
{
|
|||
|
public void Configuration(IAppBuilder app)
|
|||
|
{
|
|||
|
ConfigureAuth(app);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|