-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
/** | ||
* @module | ||
* | ||
* A zero-dependency, minimalistic, opiniated Automatic Certificate Management Environment | ||
* (ACME) client written in TypeScript from scratch. We aim to simplify certificate | ||
* generation by removing the need to deal with cryptographic options, external tools like | ||
* OpenSSL, or other low-level details. | ||
*/ | ||
|
||
import * as Dns01ChallengeUtils from "./Dns01ChallengeUtils.ts"; | ||
|
||
export * from "./AcmeAccount.ts"; | ||
export * from "./AcmeAuthorization.ts"; | ||
export * from "./AcmeChallenge.ts"; | ||
export * from "./AcmeClient.ts"; | ||
export * from "./AcmeOrder.ts"; | ||
|
||
/** Utility functions to help you with `dns-01` challenge */ | ||
export * as Dns01ChallengeUtils from "./Dns01ChallengeUtils.ts"; | ||
|
||
export * from "./ACME_DIRECTORY_URLS.ts"; | ||
|
||
export { | ||
/** | ||
* Utility functions to help you with `dns-01` challenge | ||
*/ | ||
Dns01ChallengeUtils, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters