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

import (
	"strings"
)

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

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