Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 14x 14x 14x 14x 117x 117x 117x 117x | import {CalleeCaller} from '@jsonjoy.com/rpc-calls/lib/caller/CalleeCaller';
import {createCaller} from '@jsonjoy.com/json-crdt-server/lib/routes';
import {DemoServerRemoteHistory} from '../DemoServerRemoteHistory';
export const setup = () => {
const {caller, services} = createCaller();
const client = new CalleeCaller(caller.rpc as any, {} as any);
const remote = new DemoServerRemoteHistory(client as any);
return {
services,
caller,
client,
remote,
};
};
|