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

TestFrontend.ts 237B

1234567
  1. import { Frontend } from '../src/Frontend'
  2. const testClient = new Frontend(20000, 'localhost')
  3. testClient.connect().then(_ => {
  4. testClient.info().then(console.log)
  5. testClient["HelloWorldRPCGroup"].echo("x").then(console.log)
  6. })