Versions in this module Expand all Collapse all v1 v1.0.0 Dec 1, 2025 Changes in this version + var ErrConfigUpdate = errors.New("config update failed") + var ErrGoctlExecution = errors.New("goctl execution failed") + var ErrGoctlNotFound = errors.New("goctl not found") + var ErrImportFix = errors.New("import path fix failed") + var ErrInvalidPath = errors.New("invalid path") + var ErrInvalidPort = errors.New("invalid port") + var ErrInvalidServiceName = errors.New("invalid service name") + var ErrModuleInit = errors.New("module initialization failed") + var ErrProjectStructure = errors.New("invalid project structure") + var ErrValidationFailed = errors.New("validation failed") + func IsExecutionError(err error) bool + func IsNotFound(err error) bool + func IsValidationError(err error) bool + type ExecutionError struct + Args []string + Command string + Err error + ExitCode int + Stderr string + Stdout string + func NewExecutionError(command string, args []string, stdout, stderr string, exitCode int, err error) *ExecutionError + func (e *ExecutionError) Error() string + func (e *ExecutionError) Unwrap() error + type PathError struct + Err error + Message string + Op string + Path string + func NewPathError(path, op, message string, err error) *PathError + func (e *PathError) Error() string + func (e *PathError) Unwrap() error + type ValidationError struct + Err error + Field string + Message string + Value string + func NewValidationError(field, value, message string, err error) *ValidationError + func (e *ValidationError) Error() string + func (e *ValidationError) Unwrap() error