String returns a string representation of the challenge.
()
| 41 | |
| 42 | // String returns a string representation of the challenge. |
| 43 | func (c ACMEChallenge) String() string { |
| 44 | return strings.ToLower(string(c)) |
| 45 | } |
| 46 | |
| 47 | // ACMEChallenges is a list of ACME challenges. |
| 48 | type ACMEChallenges []ACMEChallenge |
no outgoing calls
no test coverage detected