It just works

This commit is contained in:
2023-01-12 19:00:53 +01:00
parent 733e2ab006
commit d93fc37943
5 changed files with 28 additions and 7 deletions

View File

@@ -92,6 +92,13 @@ export class RPCClient {
})
}
public updateExecutable() {
return this.sendHTTP({
method: 'Service.UpdateExecutable',
params: []
})
}
public decode(data: any): RPCResponse<any> {
return JSON.parse(data)
}