mirror of
https://github.com/cheat/cheat.git
synced 2024-10-31 21:21:02 +01:00
e5114a3e76
- Re-implemented the project in Golang, and deprecated Python entirely - Implemented several new, long-requested features - Refactored cheatsheets into a separate repository
24 lines
515 B
Go
24 lines
515 B
Go
package sheets
|
|
|
|
import (
|
|
"github.com/cheat/cheat/internal/sheet"
|
|
)
|
|
|
|
// Consolidate applies cheatsheet "overrides", resolving title conflicts that
|
|
// exist among cheatpaths by preferring more local cheatsheets over less local
|
|
// cheatsheets.
|
|
func Consolidate(
|
|
cheatpaths []map[string]sheet.Sheet,
|
|
) map[string]sheet.Sheet {
|
|
|
|
consolidated := make(map[string]sheet.Sheet)
|
|
|
|
for _, cheatpath := range cheatpaths {
|
|
for title, sheet := range cheatpath {
|
|
consolidated[title] = sheet
|
|
}
|
|
}
|
|
|
|
return consolidated
|
|
}
|