mirror of
https://github.com/mmatczuk/go-http-tunnel.git
synced 2026-05-15 14:16:17 -06:00
11 lines
285 B
Go
11 lines
285 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")
|
|
|
|
errUnauthorised = errors.New("unauthorised")
|
|
)
|