summaryrefslogtreecommitdiff
path: root/pkg/server/echo.go
blob: 0387a3e7fbabf83e0de661e61ba00dbbd9a68675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package server

import (
	"strings"
)

func echo(r *request) {
	r.Print(strings.Join(r.args, " "))
}

func init() {
	newCmd(echo, "echo")
}