mirror of
https://github.com/cheat/cheat.git
synced 2025-01-07 04:10:57 +01:00
10 lines
227 B
Go
10 lines
227 B
Go
|
package cheatpath
|
||
|
|
||
|
// Cheatpath encapsulates cheatsheet path information
|
||
|
type Cheatpath struct {
|
||
|
Name string `yaml:name`
|
||
|
Path string `yaml:path`
|
||
|
ReadOnly bool `yaml:readonly`
|
||
|
Tags []string `yaml:tags`
|
||
|
}
|