lego/acme/simple_http_challenge.go

13 lines
245 B
Go
Raw Normal View History

package acme
type simpleHTTPChallenge struct{}
func (s *simpleHTTPChallenge) CanSolve() bool {
return true
}
2015-06-11 14:09:53 +00:00
func (s *simpleHTTPChallenge) Solve(challenge challenge) {
2015-06-11 22:14:33 +00:00
func (s *simpleHTTPChallenge) Solve(chlng challenge, domain string) {
}