mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
d9f34b2c19
* wp * Add test by ids * Add changes file * Update docs and remove unneeded return values * Address review comments * Improve integration tests * Use TearDownTest
14 lines
210 B
Go
14 lines
210 B
Go
package service
|
|
|
|
type badRequestError struct {
|
|
message string
|
|
}
|
|
|
|
func (e *badRequestError) Error() string {
|
|
return e.message
|
|
}
|
|
|
|
func (e *badRequestError) BadRequestError() []map[string]string {
|
|
return nil
|
|
}
|