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