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