blob: baf39e69289125ec522f5f15a99e8f0495b51616 (
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
|
namespace HandBrake.Server
{
using System;
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)
{
IServerService server = new ServerService();
server.Start();
}
}
}
|