diff options
Diffstat (limited to 'ComicRackWebViewer/Program.cs')
-rw-r--r-- | ComicRackWebViewer/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ComicRackWebViewer/Program.cs b/ComicRackWebViewer/Program.cs new file mode 100644 index 0000000..8aa6fe3 --- /dev/null +++ b/ComicRackWebViewer/Program.cs @@ -0,0 +1,21 @@ +using System;
+using Nancy.Hosting.Self;
+
+namespace ComicRackWebViewer
+{
+ public static class Program
+ {
+ public static void Main(string[] args)
+ {
+ try
+ {
+ host.Start();
+ Console.ReadLine();
+ }
+ finally
+ {
+ host.Stop();
+ }
+ }
+ }
+}
|