8 lines
115 B
Go
8 lines
115 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrPortForwardNotSupported = errors.New("port forwarding not supported")
|
|
)
|