mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-07 06:04:45 +01:00
15 lines
349 B
C#
15 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 };
|
|
}
|
|
}
|
|
}
|