mirror of
https://github.com/status-im/status-go.git
synced 2025-02-10 05:45:30 +00:00
12 lines
137 B
Go
12 lines
137 B
Go
// +build wasm
|
|
|
|
package reuseport
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Control(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|