
FIXED: * `envs/funcs.go:78:3: unknown field IgnoreWhiteSpace in struct literal of type EnvErrNoVal, but does have IgnoreWhitespace` * `envs/funcs_enverrnoval.go:15:8: sb.WasFound undefined (type *strings.Builder has no field or method WasFound)`
15 lines
460 B
Go
15 lines
460 B
Go
package paths
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
ErrMaxSymlinkLevel = fmt.Errorf("max symlink level met/exceeded")
|
|
ErrNilErrChan error = errors.New("an initialized error channel is required")
|
|
ErrNilMatchChan error = errors.New("an initialized matches channel is required")
|
|
ErrNilMismatchChan error = errors.New("an initialized mismatches channel is required")
|
|
ErrNilWg error = errors.New("a non-nil sync.WaitGroup is required")
|
|
)
|