fix: ACME spec and Cloudflare.

This commit is contained in:
Ludovic Fernandez
2018-11-16 16:40:04 +01:00
committed by Traefiker Bot
parent 9cb4d56c03
commit 53201b65b0
45 changed files with 6269 additions and 125 deletions

19
vendor/github.com/kolo/xmlrpc/xmlrpc.go generated vendored Normal file
View File

@@ -0,0 +1,19 @@
package xmlrpc
import (
"fmt"
)
// xmlrpcError represents errors returned on xmlrpc request.
type xmlrpcError struct {
code int
err string
}
// Error() method implements Error interface
func (e *xmlrpcError) Error() string {
return fmt.Sprintf("error: \"%s\" code: %d", e.err, e.code)
}
// Base64 represents value in base64 encoding
type Base64 string