Getting useful...
[WebThing.git] / main.cs
1 using System;
2
3 namespace bytex64.WebThing {
4         public class WebThingMain {
5                 static WebThing wt;
6
7                 public static void Main(string[] args) {
8                         wt = new WebThing();
9                         wt.Run();
10                 }
11         }
12 }