mirror of
https://github.com/tinygo-org/net.git
synced 2026-07-26 08:18:39 +00:00
a51f3399cb
Required for net/http.
11 lines
195 B
Go
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")
|
|
)
|