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{}) }