mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-14 23:13:24 +01:00
16 lines
429 B
C#
16 lines
429 B
C#
using Microsoft.Owin.Hosting.Services;
|
|
using Microsoft.Owin.Hosting.Tracing;
|
|
|
|
namespace NzbDrone.Host.Owin
|
|
{
|
|
public static class OwinServiceProviderFactory
|
|
{
|
|
public static ServiceProvider Create()
|
|
{
|
|
var provider = (ServiceProvider)ServicesFactory.Create();
|
|
provider.Add(typeof(ITraceOutputFactory), typeof(OwinTraceOutputFactory));
|
|
|
|
return provider;
|
|
}
|
|
}
|
|
} |