*add a misc group of rpc functions starting with ping

This commit is contained in:
Derrick Hammer 2022-08-04 23:40:30 -04:00
parent 3c5b04893f
commit e0b91b02c0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 7 additions and 0 deletions

7
src/rpc/misc.ts Normal file
View File

@ -0,0 +1,7 @@
import { RpcMethodList } from "./index";
export default {
ping: async () => {
return { pong: true };
},
} as RpcMethodList;