Make sure the library compiles for windows

systemd sockets are not applicable for windows. However compilation
should not fail on windows
This commit is contained in:
2025-07-17 20:34:55 -04:00
parent 97b73fb442
commit 0395242b8d
3 changed files with 26 additions and 11 deletions

7
fd_windows.go Normal file
View File

@@ -0,0 +1,7 @@
package anyhttp
import "net"
func makeFdListener(fd int, name string) (net.Listener, error) {
return nil, nil
}