mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 17:35:21 +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
9 lines
227 B
Go
9 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`
|
|
}
|