summaryrefslogtreecommitdiff
path: root/echo.go
blob: 29ec11138d5866a7ace919fd9db69a2f710905ee (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License.
package deno

// For testing
func InitEcho() {
	Sub("echo", func(buf []byte) []byte {
		Pub("echo", buf)
		return nil
	})
}