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.Theo()) } func init() { Register("theo", &Theo{ Command{ Help: "Quote Theo De Raadt", }, }) }