mirror of
https://github.com/therootcompany/acme.js.git
synced 2024-11-16 17:29:00 +00:00
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
'use strict';
|
|
|
|
async function main() {
|
|
await require('./generate-cert-key.js')();
|
|
await require('./format-pem-chains.js')();
|
|
await require('./compute-authorization-response.js')();
|
|
await require('./issue-certificates.js')();
|
|
}
|
|
|
|
main();
|