mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
12 lines
333 B
Go
12 lines
333 B
Go
package cert
|
|
|
|
import (
|
|
"github.com/go-acme/lego/v4/certcrypto"
|
|
)
|
|
|
|
type ConfigPayload struct {
|
|
ServerName []string `json:"server_name"`
|
|
ChallengeMethod string `json:"challenge_method"`
|
|
DNSCredentialID int `json:"dns_credential_id"`
|
|
KeyType certcrypto.KeyType `json:"key_type"`
|
|
}
|