mirror of
https://github.com/cheat/cheat.git
synced 2026-03-07 03:03:32 +01:00
Re-wrote from scratch in Golang
- Re-implemented the project in Golang, and deprecated Python entirely - Implemented several new, long-requested features - Refactored cheatsheets into a separate repository
This commit is contained in:
9
internal/cheatpath/cheatpath.go
Normal file
9
internal/cheatpath/cheatpath.go
Normal file
@@ -0,0 +1,9 @@
|
||||
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`
|
||||
}
|
||||
Reference in New Issue
Block a user