mess around with a sort node concept for communicating over packet RF things

This commit is contained in:
Joel Wetzell
2026-05-01 11:01:20 -05:00
parent c24e49c0e1
commit 755ecf3829
3 changed files with 109 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
package node
type Transport interface {
Tx(payload []byte, timeout uint32) error
Rx(timeout uint32) ([]byte, error)
}