0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/server/services/members/index.js

10 lines
181 B
JavaScript
Raw Normal View History

const labs = require('../labs');
module.exports = {
get api() {
if (!labs.isSet('members')) {
return {};
}
return require('./api');
}
};