mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-27 14:05:18 +00:00
12 lines
99 B
Go
12 lines
99 B
Go
|
//go:build windows
|
||
|
|
||
|
package waku
|
||
|
|
||
|
import (
|
||
|
"math"
|
||
|
)
|
||
|
|
||
|
func getNumFDs() int {
|
||
|
return math.MaxInt
|
||
|
}
|