//
// $Id$
//
import { Context } from '../infohub/Context.js';
import { RestServices, RestResponse } from '../tools/RestServices.js';
/**
@category Infohub Routines
@classdesc
*/
export class ServiceRpc {
#_ctx = null;
/**
*
* @param {Context} ctx
*
*/
constructor(ctx) {
this.#_ctx = ctx;
}
}
Source