Files

7 lines
121 B
Go

package node
type Transport interface {
Tx(payload []byte, timeout uint32) error
Rx(timeout uint32) ([]byte, error)
}