import { getContainerModuleId } from '../actions/getContainerModuleId.js';
export class ContainerModule {
#id;
#load;
constructor(load) {
this.#id = getContainerModuleId();
this.#load = load;
}
get id() {
return this.#id;
}
load(options) {
return this.#load(options);
}
}