1
0

payload.go 333 B

123456789101112
  1. package cert
  2. import (
  3. "github.com/go-acme/lego/v4/certcrypto"
  4. )
  5. type ConfigPayload struct {
  6. ServerName []string `json:"server_name"`
  7. ChallengeMethod string `json:"challenge_method"`
  8. DNSCredentialID int `json:"dns_credential_id"`
  9. KeyType certcrypto.KeyType `json:"key_type"`
  10. }