indieauth-server/internal/executors/errors.go

10 lines
174 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 {
return "unrecognised command: "+ e.command
}