aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Diagnostics/ProcessFactory.cs
blob: a2c511cb9742b25f38ff04ce91721feeaf4f578e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MediaBrowser.Model.Diagnostics;

namespace Emby.Server.Implementations.Diagnostics
{
    public class ProcessFactory : IProcessFactory
    {
        public IProcess Create(ProcessOptions options)
        {
            return new CommonProcess(options);
        }
    }
}