// Copyright 2018 Ryan Dahl // All rights reserved. MIT License. package deno // For testing func InitEcho() { Sub("echo", func(buf []byte) []byte { Pub("echo", buf) return nil }) }