lego/acme/dvsni_challenge.go

12 lines
206 B
Go
Raw Normal View History

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