indieauth-server/internal/executors/errors.go

10 lines
175 B
Go
Raw Permalink Normal View History

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