16 lines
294 B
C#
16 lines
294 B
C#
using Microsoft.Owin;
|
|
using Owin;
|
|
|
|
[assembly: OwinStartup(typeof(Service.MeterProcessState.Startup))]
|
|
|
|
namespace Service.MeterProcessState
|
|
{
|
|
public partial class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
ConfigureAuth(app);
|
|
}
|
|
}
|
|
}
|