index-api.js
318 Bytes
/**
* Created by TaoHuang on 2016/6/21.
*/
'use strict';
const ServiceAPI = require(library + "/api").ServiceAPI;
const serviceAPI = new ServiceAPI();
module.exports.getResourceAsync = (resourceCode) => {
return serviceAPI.get('/operations/api/v5/resource/get', {
content_code: resourceCode
});
};