Files
tinygo/src/net/errors.go
T
Federico G. Schwindt b092856238 Add more net compatibility
Required for net/http.
2021-06-10 15:33:46 +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")
)