mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 01:18:29 +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
|
||
|
}
|