mirror of
https://github.com/status-im/status-go.git
synced 2025-01-22 04:31:30 +00:00
12 lines
100 B
Go
12 lines
100 B
Go
|
//go:build windows
|
||
|
|
||
|
package rcmgr
|
||
|
|
||
|
import (
|
||
|
"math"
|
||
|
)
|
||
|
|
||
|
func getNumFDs() int {
|
||
|
return math.MaxInt
|
||
|
}
|