e71fc374bc
This brings the name of the application inline with the terminology in the Joyent triton / cloud api documentation.
10 lines
187 B
JavaScript
10 lines
187 B
JavaScript
const request = require('./request');
|
|
|
|
module.exports.list = (ctx) => {
|
|
return request('listPackages', ctx);
|
|
};
|
|
|
|
module.exports.get = (ctx) => {
|
|
return request('getPackage', ctx);
|
|
};
|