summaryrefslogtreecommitdiff
path: root/pkg/server/echo.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/server/echo.go')
-rw-r--r--pkg/server/echo.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/server/echo.go b/pkg/server/echo.go
index 8980ed1..0387a3e 100644
--- a/pkg/server/echo.go
+++ b/pkg/server/echo.go
@@ -4,10 +4,10 @@ import (
"strings"
)
-func init() {
- newCmd(echo, "echo")
-}
-
func echo(r *request) {
r.Print(strings.Join(r.args, " "))
}
+
+func init() {
+ newCmd(echo, "echo")
+}