mirror of https://github.com/cheat/cheat.git
19 lines
324 B
Go
19 lines
324 B
Go
package cheatpath
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Validate returns an error if the cheatpath is invalid
|
|
func (c *Cheatpath) Validate() error {
|
|
|
|
if c.Name == "" {
|
|
return fmt.Errorf("invalid cheatpath: name must be specified")
|
|
}
|
|
if c.Path == "" {
|
|
return fmt.Errorf("invalid cheatpath: path must be specified")
|
|
}
|
|
|
|
return nil
|
|
}
|