forked from TrueCloudLab/certificates
Satisfy golangci-lint
This commit is contained in:
parent
42f56d6906
commit
29f9730485
2 changed files with 8 additions and 3 deletions
|
@ -26,8 +26,11 @@ import (
|
||||||
type ChallengeType string
|
type ChallengeType string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// HTTP01 is the http-01 ACME challenge type
|
||||||
HTTP01 ChallengeType = "http-01"
|
HTTP01 ChallengeType = "http-01"
|
||||||
|
// DNS01 is the dns-01 ACME challenge type
|
||||||
DNS01 ChallengeType = "dns-01"
|
DNS01 ChallengeType = "dns-01"
|
||||||
|
// TLSALPN01 is the tls-alpn-01 ACME challenge type
|
||||||
TLSALPN01 ChallengeType = "tls-alpn-01"
|
TLSALPN01 ChallengeType = "tls-alpn-01"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,9 @@ import (
|
||||||
type IdentifierType string
|
type IdentifierType string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// IP is the ACME ip identifier type
|
||||||
IP IdentifierType = "ip"
|
IP IdentifierType = "ip"
|
||||||
|
// DNS is the ACME dns identifier type
|
||||||
DNS IdentifierType = "dns"
|
DNS IdentifierType = "dns"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue