@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
19 lines (18 loc) • 693 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const base_1 = __importDefault(require("../base"));
const format_1 = __importDefault(require("./format"));
const data_1 = __importDefault(require("./data"));
const mutation_1 = __importDefault(require("./mutation"));
class SQS extends base_1.default {
constructor() {
super(...arguments);
this.format = format_1.default.bind(this);
this.getData = data_1.default.bind(this);
this.mutation = mutation_1.default;
}
}
exports.default = SQS;