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