indieauth-server/internal/executors/errors.go

10 lines
175 B
Go
Raw Normal View History

2024-10-12 21:38:53 +01:00
package executors
type UnrecognisedCommandError struct {
command string
}
func (e UnrecognisedCommandError) Error() string {
2024-10-13 12:04:20 +01:00
return "unrecognised command: " + e.command
2024-10-12 21:38:53 +01:00
}