diff options
Diffstat (limited to 'win/CS/HandBrake.Server/Program.cs')
-rw-r--r-- | win/CS/HandBrake.Server/Program.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Server/Program.cs b/win/CS/HandBrake.Server/Program.cs new file mode 100644 index 000000000..baf39e692 --- /dev/null +++ b/win/CS/HandBrake.Server/Program.cs @@ -0,0 +1,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();
+ }
+ }
+}
|