kernel-handshake-client/dist/index.js

12 lines
419 B
JavaScript
Raw Permalink Normal View History

2023-02-19 19:42:51 +00:00
import { Client, factory } from "@lumeweb/libkernel-universal";
2023-04-17 02:49:11 +00:00
const MODULE = "AABCDWpcbyCkTWy5ZP6qZWZ5eiFe--CRJSMKxRYLE4usfQ";
2023-02-19 19:42:51 +00:00
export class HandshakeClient extends Client {
async ready() {
return this.callModuleReturn("ready");
}
async query(method, params) {
return this.callModuleReturn("query", { method, params });
}
}
export const createClient = factory(HandshakeClient, MODULE);