index-api.js 267 Bytes
/**
 * Created by TaoHuang on 2016/6/21.
 */
'use strict';

const serviceAPI = global.yoho.ServiceAPI;

module.exports.getResourceAsync = (resourceCode) => {
    return serviceAPI.get('/operations/api/v5/resource/get', {
        content_code: resourceCode
    });
};