88612832f4e15c759bb3e39956ddd9d3de420f31
[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 }