mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			340 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			340 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
#pragma warning disable SA1600
 | 
						|
 | 
						|
using MediaBrowser.Model.Diagnostics;
 | 
						|
 | 
						|
namespace Emby.Server.Implementations.Diagnostics
 | 
						|
{
 | 
						|
    public class ProcessFactory : IProcessFactory
 | 
						|
    {
 | 
						|
        public IProcess Create(ProcessOptions options)
 | 
						|
        {
 | 
						|
            return new CommonProcess(options);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |