Formalized plugin interface
[WebThing.git] / plugins / DefaultPage.cs
1 using System;
2 using bytex64.WebThing;
3
4 public class DefaultPage : WebThingPlugin {
5     public void Init(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 }