2019-11-01 18:38:54 +01:00
|
|
|
#pragma warning disable CS1591
|
2019-12-11 00:13:57 +01:00
|
|
|
#pragma warning disable SA1600
|
2019-11-01 18:38:54 +01:00
|
|
|
|
2019-01-13 20:54:44 +01:00
|
|
|
using MediaBrowser.Model.Diagnostics;
|
2016-11-01 00:07:12 -04:00
|
|
|
|
2017-08-16 02:43:41 -04:00
|
|
|
namespace Emby.Server.Implementations.Diagnostics
|
2016-11-01 00:07:12 -04:00
|
|
|
{
|
|
|
|
|
public class ProcessFactory : IProcessFactory
|
|
|
|
|
{
|
|
|
|
|
public IProcess Create(ProcessOptions options)
|
|
|
|
|
{
|
|
|
|
|
return new CommonProcess(options);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|