mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-15 14:16:17 -06:00
9 lines
238 B
Go
9 lines
238 B
Go
package tunnel
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
errClientNotSubscribed = errors.New("client not subscribed")
|
|
errClientNotConnected = errors.New("client not connected")
|
|
errClientAlreadyConnected = errors.New("client already connected")
|
|
)
|