mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-24 11:57:25 +08:00
12 lines
100 B
Go
12 lines
100 B
Go
//go:build windows
|
|
|
|
package rcmgr
|
|
|
|
import (
|
|
"math"
|
|
)
|
|
|
|
func getNumFDs() int {
|
|
return math.MaxInt
|
|
}
|