namespace HandBrake.Server
{
using System;
using HandBrake.ApplicationServices.Services;
using HandBrake.ApplicationServices.Services.Interfaces;
///
/// The HandBrake Service
///
class Program
{
///
/// The main.
///
///
/// The args.
///
static void Main(string[] args)
{
IServerService server = new ServerService();
server.Start();
}
}
}