mirror of
https://github.com/tinygo-org/net.git
synced 2026-08-03 11:37:46 +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")
|
|
)
|