cheat/internal/cheatpath/cheatpath.go

10 lines
227 B
Go
Raw Normal View History

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`
}