package server import ( "strings" ) func init() { setHandler(echo, "echo") } func echo(r *request) { r.Print(strings.Join(r.args, " ")) }