Added initial segment overlap resolution logic

This commit is contained in:
2026-04-27 15:52:53 -05:00
parent e42a2326e8
commit 1b9f4bd922
16 changed files with 1357 additions and 59 deletions

View File

@@ -50,6 +50,16 @@ func Info(stage string, module string, message string) Event {
}
}
// Warning constructs a warning report event.
func Warning(stage string, module string, message string) Event {
return Event{
Severity: SeverityWarning,
Stage: stage,
Module: module,
Message: message,
}
}
// WriteJSON writes a deterministic JSON report.
func WriteJSON(path string, rpt Report) error {
file, err := os.Create(path)