2 using bytex64.WebThing;
4 public class DefaultPage : WebThingPlugin {
5 public override void Init(WebThing wt) {
6 if (Config.Arguments.Length > 0) {
7 wt.OpenUri(Config.Arguments[0]);
8 } else if (Config.Options.ContainsKey("DefaultPage")) {
9 wt.OpenUri(Config.Options["DefaultPage"]);
11 wt.OpenUri("http://dominionofawesome.com/");