mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
9 lines
124 B
Go
9 lines
124 B
Go
package main
|
|
|
|
// For testing
|
|
func InitEcho() {
|
|
Sub("echo", func(buf []byte) []byte {
|
|
Pub("echo", buf)
|
|
return nil
|
|
})
|
|
}
|