mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-03 06:23:06 +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
|
|
}
|