mirror of
https://github.com/cheat/cheat.git
synced 2024-10-31 21:21:02 +01:00
bfb071c0b2
- Add `package` comments - Rename `opts` to `_` where unused
12 lines
327 B
Go
12 lines
327 B
Go
// Package cheatpath implements functions pertaining to cheatsheet file path
|
|
// management.
|
|
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"`
|
|
}
|