2
0
mirror of https://git.coolaj86.com/coolaj86/greenlock-koa.js.git synced 2025-12-23 13:38:41 +00:00
greenlock-koa.js/index.js
2020-04-29 15:59:01 +00:00

9 lines
296 B
JavaScript

'use strict';
module.exports = require('greenlock-express');
module.exports._greenlockExpressCreate = module.exports.create;
module.exports.create = function (opts) {
opts._communityPackage = opts._communityPackage || 'greenlock-koa';
return module.exports._greenlockExpressCreate(opts);
};