zaccl
Version:
The Zoom App Complete Connection Library, a project that handles everything required to build a zoom-integrated app.
21 lines • 661 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// TODO: make into typescript, handle instantiateEndpoint functionality:
// build it into the visit endpoint function just like in caccl-api
/**
* An endpoint category
* @author Gabe Abrams
*/
class EndpointCategory {
/**
* Initialize the endpoint category
* @author Gabe Abrams
* @param initPack package of info for initializing the endpoint category
*/
constructor(initPack) {
this.visitEndpoint = initPack.visitEndpoint;
this.api = initPack.api;
}
}
exports.default = EndpointCategory;
//# sourceMappingURL=EndpointCategory.js.map