Victor Lacasse-Beaudoin
dc72748fbe
Ajouter error type si dbclient ou bottinclient ne sont pas implémentés Ajouter echo.Group v0
8 lines
267 B
Go
8 lines
267 B
Go
// Package apierror defines error types that can be returned by the API server
|
|
package apierror
|
|
|
|
type ErrBottinOrDBNotImplemented struct{}
|
|
|
|
func (e *ErrBottinOrDBNotImplemented) Error() string {
|
|
return "Database client or agecem/bottin API client not implemented"
|
|
}
|