mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02: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;
|
|
}
|
|
}
|
|
} |