summaryrefslogtreecommitdiff
path: root/theo.go
diff options
context:
space:
mode:
Diffstat (limited to 'theo.go')
-rw-r--r--theo.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/theo.go b/theo.go
index 2da46e2..fae369b 100644
--- a/theo.go
+++ b/theo.go
@@ -11,10 +11,10 @@ func (_ Theo) Handle(conn *irc.Conn, line *irc.Line) {
conn.Notice(line.Target(), theo.Theo())
}
+func (_ Theo) Help() string {
+ return "Quote Theo De Raadt"
+}
+
func init() {
- Register("theo", &Theo{
- Command{
- Help: "Quote Theo De Raadt",
- },
- })
+ Register("theo", &Theo{})
}