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