Files
net/errors.go
T
Federico G. Schwindt a51f3399cb Add more net compatibility
Required for net/http.
2023-05-04 13:35:26 +02:00

11 lines
195 B
Go

package net
import "errors"
var (
// copied from poll.ErrNetClosing
errClosed = errors.New("use of closed network connection")
ErrNotImplemented = errors.New("operation not implemented")
)