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

12
vendor/github.com/transip/gotransip/api.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package gotransip
// CancellationTime represents the possible ways of canceling a contract
type CancellationTime string
var (
// CancellationTimeEnd specifies to cancel the contract when the contract was
// due to end anyway
CancellationTimeEnd CancellationTime = "end"
// CancellationTimeImmediately specifies to cancel the contract immediately
CancellationTimeImmediately CancellationTime = "immediately"
)