Files
anyhttp/fd_windows.go

11 lines
162 B
Go
Raw Normal View History

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