mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-25 19:43:25 +01:00
12 lines
277 B
C#
12 lines
277 B
C#
using MediaBrowser.Model.Diagnostics;
|
|
|
|
namespace Emby.Server.Implementations.Diagnostics
|
|
{
|
|
public class ProcessFactory : IProcessFactory
|
|
{
|
|
public IProcess Create(ProcessOptions options)
|
|
{
|
|
return new CommonProcess(options);
|
|
}
|
|
}
|
|
}
|