mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-10 05:53:39 +00:00
Add more net compatibility
Required for net/http.
This commit is contained in:
committed by
Ron Evans
parent
15d77119c9
commit
b092856238
@@ -0,0 +1,10 @@
|
||||
package net
|
||||
|
||||
import "errors"
|
||||
|
||||
var (
|
||||
// copied from poll.ErrNetClosing
|
||||
errClosed = errors.New("use of closed network connection")
|
||||
|
||||
ErrNotImplemented = errors.New("operation not implemented")
|
||||
)
|
||||
Reference in New Issue
Block a user