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