summaryrefslogtreecommitdiff
path: root/theo.go
diff options
context:
space:
mode:
Diffstat (limited to 'theo.go')
-rw-r--r--theo.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/theo.go b/theo.go
deleted file mode 100644
index cb1bc89..0000000
--- a/theo.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package main
-
-import (
- "dim13.org/theo"
- irc "github.com/fluffle/goirc/client"
-)
-
-type Theo struct{ Command }
-
-func (_ Theo) Handle(conn *irc.Conn, line *irc.Line) {
- conn.Notice(line.Target(), theo.Quote())
-}
-
-func (_ Theo) Help() string {
- return "Quote Theo De Raadt"
-}
-
-func init() {
- Register("theo", &Theo{})
-}