projects
/
WebThing.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
38ed6721b8ab414c76061699d470bd254c2236a2
[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
}