mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			277 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 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);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |