Files
anyhttp/fd_windows.go
Balakrishnan Balasubramanian 0395242b8d Make sure the library compiles for windows
systemd sockets are not applicable for windows. However compilation
should not fail on windows
2025-07-17 20:34:55 -04:00

8 lines
115 B
Go

package anyhttp
import "net"
func makeFdListener(fd int, name string) (net.Listener, error) {
return nil, nil
}