mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
13 lines
349 B
Go
13 lines
349 B
Go
package acme
|
|
|
|
import (
|
|
"github.com/rotisserie/eris"
|
|
)
|
|
|
|
// All errors relating to Acme.sh use
|
|
var (
|
|
ErrDNSNeedsDNSProvider = eris.New("RequestCert dns method requires a dns provider")
|
|
ErrHTTPHasDNSProvider = eris.New("RequestCert http method does not need a dns provider")
|
|
ErrMethodNotSupported = eris.New("RequestCert method not supported")
|
|
)
|