mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-05 21:28:01 +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);
|
|
}
|
|
}
|
|
}
|