Implement single-owner reconciliation modes

This commit is contained in:
2026-06-08 18:30:52 +00:00
parent b7db3993fb
commit 93821ea6f9
6 changed files with 431 additions and 20 deletions

View File

@@ -148,11 +148,3 @@ func ManagedOutputPaths(outputs []Output) []string {
}
return paths
}
func stateOutputManagedPaths(outputs []state.OutputFile) []string {
paths := make([]string, 0, len(outputs))
for _, output := range outputs {
paths = append(paths, output.Path)
}
return paths
}