11 lines
242 B
Go
11 lines
242 B
Go
package conf
|
|
|
|
import (
|
|
`errors`
|
|
)
|
|
|
|
var (
|
|
ErrMissingUser error = errors.New("at least one tunnel is missing a username and no default username was provided")
|
|
ErrUnkownSyntax error = errors.New("unknown/unsupported configuration syntax")
|
|
)
|