Merge pull request #154 from xi2/improve-challengeprovider-comment

Improve wording of ChallengeProvider comment
This commit is contained in:
xenolf 2016-03-16 16:00:47 +01:00
commit f00bb8b4bb

View file

@ -1,7 +1,9 @@
package acme
// ChallengeProvider 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.
// ChallengeProvider enables implementing a custom challenge
// 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 {
Present(domain, token, keyAuth string) error
CleanUp(domain, token, keyAuth string) error