blob: d5c21ac0cd0498de86727e6b6093426104b468d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
namespace HandBrake.Server
{
using System.Linq;
using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
/// <summary>
/// The HandBrake Service
/// </summary>
class Program
{
/// <summary>
/// The main.
/// </summary>
/// <param name="args">
/// The args.
/// </param>
static void Main(string[] args)
{
if (args.Count() != 1)
{
IServerService server = new ServerService();
server.Start("8001");
}
else
{
IServerService server = new ServerService();
server.Start(args[0]);
}
}
}
}
|