DNSProvider defines the set of operations required for ACME challenges or other sorts of domain verification. A DNS provider must be able to append and delete records in order to solve ACME challenges. Find one you can use at https://github.com/libdns. If your provider isn't implemented yet, feel fr
| 587 | // at https://github.com/libdns. If your provider isn't |
| 588 | // implemented yet, feel free to contribute! |
| 589 | type DNSProvider interface { |
| 590 | libdns.RecordAppender |
| 591 | libdns.RecordDeleter |
| 592 | } |
| 593 | |
| 594 | // distributedSolver allows the ACME HTTP-01 and TLS-ALPN challenges |
| 595 | // to be solved by an instance other than the one which initiated it. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…