Files
lneto/internal/net_tinygo.go
T
2025-08-20 19:25:08 -03:00

13 lines
201 B
Go

//go:build tinygo
package internal
import (
"errors"
"net"
)
func interfaceByName(name string) (*net.Interface, error) {
return nil, errors.New("net.InterfaceByName not implemented on TinyGo")
}