mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-06 10:16:18 +00:00
merge common implementations and server implementations
This commit is contained in:
12
Emby.Server.Implementations/Diagnostics/ProcessFactory.cs
Normal file
12
Emby.Server.Implementations/Diagnostics/ProcessFactory.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using MediaBrowser.Model.Diagnostics;
|
||||
|
||||
namespace Emby.Server.Implementations.Diagnostics
|
||||
{
|
||||
public class ProcessFactory : IProcessFactory
|
||||
{
|
||||
public IProcess Create(ProcessOptions options)
|
||||
{
|
||||
return new CommonProcess(options);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user