mirror of
https://github.com/go-acme/lego.git
synced 2025-01-06 16:31:57 +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
|
|
}
|