Re-tabinated C# files
[WebThing.git] / plugins / DefaultPage.cs
1 using System;
2 using bytex64.WebThing;
3
4 public class Plugin {
5     public Plugin(WebThing wt) {
6         if (wt.Arguments.Length > 0) {
7             wt.OpenUri(wt.Arguments[0]);
8         } else {
9             wt.OpenUri("http://dominionofawesome.com/");
10         }
11     }
12 }