Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
1234567 |
- import { Frontend } from '../src/Frontend'
-
- const testClient = new Frontend(20000, 'localhost')
- testClient.connect().then(_ => {
- testClient.info().then(console.log)
- testClient["HelloWorldRPCGroup"].echo("x").then(console.log)
- })
|