mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
153 B
Go
13 lines
153 B
Go
//go:build wasm
|
|
// +build wasm
|
|
|
|
package reuseport
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Control(network, address string, c syscall.RawConn) error {
|
|
return nil
|
|
}
|