mirror of
https://github.com/soypat/lneto.git
synced 2026-08-04 15:07:52 +00:00
13 lines
201 B
Go
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")
|
|
}
|