mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05: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
|
||
|
})
|
||
|
}
|