0e5aed63dd
* changed api * general whisper debug interface
14 lines
135 B
Go
14 lines
135 B
Go
package qwhisper
|
|
|
|
import (
|
|
"fmt"
|
|
"unsafe"
|
|
)
|
|
|
|
type Watch struct {
|
|
}
|
|
|
|
func (self *Watch) Arrived(v unsafe.Pointer) {
|
|
fmt.Println(v)
|
|
}
|