Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LenientStrategy ¶
type LenientStrategy struct {
// In a real implementation, we might have a logger here.
// For now, we just accumulate errors if needed, or just return ActionWarn/ActionFix.
Errors []error
}
LenientStrategy implements a best-effort recovery strategy. It logs errors (if a logger were available) and attempts to continue.
func NewLenientStrategy ¶
func NewLenientStrategy() *LenientStrategy
type StrictStrategy ¶
type StrictStrategy struct{}
StrictStrategy implements a fail-fast recovery strategy.
func NewStrictStrategy ¶
func NewStrictStrategy() *StrictStrategy
Click to show internal directories.
Click to hide internal directories.