import { Backend } from '../src/Backend' const testServer = new Backend(20000, [{ name: "HelloWorldRPCGroup", publicRPCs: () => [], localRPCs: () => [{ type: 'Call', name: 'echo', call: async (s:string) => s, }] }])