mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 07:10:05 +02:00
e71fc374bc
This brings the name of the application inline with the terminology in the Joyent triton / cloud api documentation.
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
const request = require('./request');
|
|
|
|
module.exports.list = () => {
|
|
return request('listFirewallRules', {});
|
|
};
|
|
|
|
module.exports.get = (ctx) => {
|
|
return request('getFirewallRule', ctx);
|
|
};
|