1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-09 01:18:01 +02:00
lego/acme/dvsni_challenge.go

12 lines
206 B
Go
Raw Normal View History

2015-06-10 15:11:01 +02:00
package acme
type dvsniChallenge struct{}
func (s *dvsniChallenge) CanSolve(domain string) bool {
return false
}
2015-06-13 03:56:52 +02:00
func (s *dvsniChallenge) Solve(challenge challenge, domain string) error {
return nil
}