mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +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
|
|
}
|