Added tabs
[WebThing.git] / plugins / DefaultPage.cs
index 9d8913d..e0f65d6 100644 (file)
@@ -1,12 +1,12 @@
 using System;
 using bytex64.WebThing;
 
-public class Plugin {
-       public Plugin(WebThing wt) {
-               if (wt.Arguments.Length > 0) {
-                       wt.OpenUri(wt.Arguments[0]);
-               } else {
-                       wt.OpenUri("http://dominionofawesome.com/");
-               }
-       }
+public class DefaultPage : WebThingPlugin {
+    public override void Init(WebThing wt) {
+        if (wt.Arguments.Length > 0) {
+            wt.OpenUri(wt.Arguments[0]);
+        } else {
+            wt.OpenUri("http://dominionofawesome.com/");
+        }
+    }
 }