fixes for CI (#90)

This commit is contained in:
Pat Whittingslow
2026-04-17 15:58:55 -03:00
committed by GitHub
parent 6d0ffcf0ad
commit 363bec6793
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ type NetworkDevice struct {
recv func([]byte) (int, error)
}
func (d *NetworkDevice) Transmit(buf []byte) error { return d.send(buf) }
func (d *NetworkDevice) Receive(buf []byte) (int, error) { return d.recv(buf) }
func (d *NetworkDevice) Transmit(buf []byte) error { return d.send(buf) }
func (d *NetworkDevice) Receive(buf []byte) (int, error) { return d.recv(buf) }
func main() {
ctx := context.Background()