mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 19:24:47 +03:00
16 lines
349 B
C#
16 lines
349 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Diagnostics;
|
|
using MediaBrowser.Model.Diagnostics;
|
|
|
|
namespace Emby.Server.Implementations.Diagnostics
|
|
{
|
|
public class ProcessFactory : IProcessFactory
|
|
{
|
|
public Process Create(ProcessStartInfo startInfo)
|
|
{
|
|
return new Process { StartInfo = startInfo };
|
|
}
|
|
}
|
|
}
|