//
// $Id$
//
import { Context } from "../infohub/Context.js"
import { RestServices, RestResponse } from "../tools/RestServices.js"
/**
@category Infohub Hub and Routines
@classdesc Get Object tree, etc.
*/
export class ServiceHub {
#_ctx = null;
/**
*
* @param {Context} ctx
*
*/
constructor(ctx) {
this.#_ctx = ctx
}
}
Source