export class Shell {
#context;
constructor(context) {
this.#context = context;
}
get context() {
if (this.#context)
return this.#context;
else
throw new Error("nexus.context was not set, but it's necessary");
}
set context(context) {
this.#context = context;
}
}