mirror of
https://github.com/cheat/cheat.git
synced 2025-01-19 09:59:30 +01:00
8 lines
116 B
Go
8 lines
116 B
Go
|
package sheet
|
||
|
|
||
|
// Match encapsulates search matches within cheatsheets
|
||
|
type Match struct {
|
||
|
Line int
|
||
|
Text string
|
||
|
}
|