forked from TrueCloudLab/lego
6004e599ed
* feat: add dep configuration files. * chore: add vendor folder. * refactor: update Dockerfile. * review: remove git from Dockerfile. * review: remove RUN apk. * review: dep status. * feat: added .dockerignore
11 lines
259 B
Go
11 lines
259 B
Go
package auroradnsclient
|
|
|
|
// AuroraDNSError describes the format of a generic AuroraDNS API error
|
|
type AuroraDNSError struct {
|
|
ErrorCode string `json:"error"`
|
|
Message string `json:"errormsg"`
|
|
}
|
|
|
|
func (e AuroraDNSError) Error() string {
|
|
return e.Message
|
|
}
|