mirror of
https://git.coolaj86.com/coolaj86/greenlock-koa.js.git
synced 2025-04-22 07:10:42 +00:00
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
'use strict';
|
|
|
|
module.exports = require('greenlock-express');
|
|
module.exports._greenlockExpressCreate = module.exports.create;
|
|
module.create = function (opts) {
|
|
opts._communityPackage = opts._communityPackage || 'greenlock-koa';
|
|
return module.exports._greenlockExpressCreate(opts);
|
|
};
|