Вы не можете выбрать более 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. })