mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
Satisfy golangci-lint
This commit is contained in:
parent
42f56d6906
commit
29f9730485
@ -26,8 +26,11 @@ import (
|
||||
type ChallengeType string
|
||||
|
||||
const (
|
||||
HTTP01 ChallengeType = "http-01"
|
||||
DNS01 ChallengeType = "dns-01"
|
||||
// HTTP01 is the http-01 ACME challenge type
|
||||
HTTP01 ChallengeType = "http-01"
|
||||
// DNS01 is the dns-01 ACME challenge type
|
||||
DNS01 ChallengeType = "dns-01"
|
||||
// TLSALPN01 is the tls-alpn-01 ACME challenge type
|
||||
TLSALPN01 ChallengeType = "tls-alpn-01"
|
||||
)
|
||||
|
||||
|
@ -17,7 +17,9 @@ import (
|
||||
type IdentifierType string
|
||||
|
||||
const (
|
||||
IP IdentifierType = "ip"
|
||||
// IP is the ACME ip identifier type
|
||||
IP IdentifierType = "ip"
|
||||
// DNS is the ACME dns identifier type
|
||||
DNS IdentifierType = "dns"
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user