您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TestBackend.ts 254B

1234567891011
  1. import { Server } from '../src/Backend'
  2. const testServer = new Server(20000, [{
  3. name: "HelloWorldRPCGroup",
  4. publicRPCs: () => [],
  5. localRPCs: () => [{
  6. type: 'Call',
  7. name: 'echo',
  8. call: async (s:string) => s,
  9. }]
  10. }])