egnyte-resellers
Version:
Library for managing things against the undocumented egnyte resellers API.
16 lines (15 loc) • 527 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Egnyte = void 0;
const customers_1 = require("./customers/customers");
const plans_1 = require("./plans/plans");
const users_1 = require("./users/users");
class Egnyte {
constructor(config) {
this.config = config;
this.plans = new plans_1.Plans(this.config);
this.customers = new customers_1.Customers(this.plans, this.config);
this.users = new users_1.Users(this.config);
}
}
exports.Egnyte = Egnyte;