forked from TrueCloudLab/lego
12 lines
245 B
Go
12 lines
245 B
Go
package acme
|
|
|
|
type simpleHTTPChallenge struct{}
|
|
|
|
func (s *simpleHTTPChallenge) CanSolve() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *simpleHTTPChallenge) Solve(challenge challenge) {
|
|
func (s *simpleHTTPChallenge) Solve(chlng challenge, domain string) {
|
|
|
|
}
|