forked from TrueCloudLab/lego
Merge pull request #154 from xi2/improve-challengeprovider-comment
Improve wording of ChallengeProvider comment
This commit is contained in:
commit
f00bb8b4bb
1 changed files with 4 additions and 2 deletions
|
@ -1,7 +1,9 @@
|
||||||
package acme
|
package acme
|
||||||
|
|
||||||
// ChallengeProvider presents the solution to a challenge available to be solved
|
// ChallengeProvider enables implementing a custom challenge
|
||||||
// CleanUp will be called by the challenge if Present ends in a non-error state.
|
// provider. Present presents the solution to a challenge available to
|
||||||
|
// be solved. CleanUp will be called by the challenge if Present ends
|
||||||
|
// in a non-error state.
|
||||||
type ChallengeProvider interface {
|
type ChallengeProvider interface {
|
||||||
Present(domain, token, keyAuth string) error
|
Present(domain, token, keyAuth string) error
|
||||||
CleanUp(domain, token, keyAuth string) error
|
CleanUp(domain, token, keyAuth string) error
|
||||||
|
|
Loading…
Reference in a new issue