shop-api.js 205 Bytes
'use strict';
const Promise = require('bluebird');
const co = Promise.coroutine;

module.exports.basisTemplateAsync = function (shopId) {
    return co(function* () {
        return {shopId};
    })();
};