mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +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
7 lines
116 B
Go
7 lines
116 B
Go
package sheet
|
|
|
|
// Match encapsulates search matches within cheatsheets
|
|
type Match struct {
|
|
Line int
|
|
Text string
|
|
}
|