diff options
Diffstat (limited to 'third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs')
-rw-r--r-- | third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs b/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs new file mode 100644 index 00000000..2d07c330 --- /dev/null +++ b/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.ServiceProcess; +using System.Text; + +namespace MELT_Command_Websocket +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + static void Main() + { + ServiceBase[] ServicesToRun; + ServicesToRun = new ServiceBase[] + { + new Service1() + }; + ServiceBase.Run(ServicesToRun); + } + } +} |