indieauth-server/internal/executors/errors.go
Dan Anglin f393d982f5
Some checks failed
CI / Tests (pull_request) Failing after 2m18s
CI / Style (pull_request) Failing after 8s
run gosec and staticcheck in ci
2024-10-13 12:04:20 +01:00

9 lines
175 B
Go

package executors
type UnrecognisedCommandError struct {
command string
}
func (e UnrecognisedCommandError) Error() string {
return "unrecognised command: " + e.command
}