mirror of
https://github.com/go-acme/lego.git
synced 2024-12-02 02:56:33 +02:00
12 lines
206 B
Go
12 lines
206 B
Go
package acme
|
|
|
|
type dvsniChallenge struct{}
|
|
|
|
func (s *dvsniChallenge) CanSolve(domain string) bool {
|
|
return false
|
|
}
|
|
|
|
func (s *dvsniChallenge) Solve(challenge challenge, domain string) error {
|
|
return nil
|
|
}
|