()
| 352 | } |
| 353 | |
| 354 | func buildUAString() string { |
| 355 | ua := "CertMagic" |
| 356 | if UserAgent != "" { |
| 357 | ua = UserAgent + " " + ua |
| 358 | } |
| 359 | return ua |
| 360 | } |
| 361 | |
| 362 | // RenewalInfoGetter is a type that can get ACME Renewal Information (ARI). |
| 363 | // Users of this package that wrap the ACMEIssuer or use any other issuer |
no outgoing calls
no test coverage detected
searching dependent graphs…