diff --git a/src/rpc/misc.ts b/src/rpc/misc.ts new file mode 100644 index 0000000..6f603e2 --- /dev/null +++ b/src/rpc/misc.ts @@ -0,0 +1,7 @@ +import { RpcMethodList } from "./index"; + +export default { + ping: async () => { + return { pong: true }; + }, +} as RpcMethodList;