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