2019-01-13 19:54:44 +00:00
|
|
|
using MediaBrowser.Model.Diagnostics;
|
2016-11-01 04:07:12 +00:00
|
|
|
|
2017-08-16 06:43:41 +00:00
|
|
|
namespace Emby.Server.Implementations.Diagnostics
|
2016-11-01 04:07:12 +00:00
|
|
|
{
|
|
|
|
public class ProcessFactory : IProcessFactory
|
|
|
|
{
|
|
|
|
public IProcess Create(ProcessOptions options)
|
|
|
|
{
|
|
|
|
return new CommonProcess(options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|