mirror of
https://github.com/go-acme/lego.git
synced 2024-12-05 03:58:54 +02:00
12 lines
175 B
Go
12 lines
175 B
Go
package acme
|
|
|
|
type simpleHTTPChallenge struct{}
|
|
|
|
func (s *simpleHTTPChallenge) CanSolve() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *simpleHTTPChallenge) Solve(challenge challenge) {
|
|
|
|
}
|