refactor(@deltachat/stdio-rpc-server): remove await from README example

This commit is contained in:
DavidSM100
2025-12-19 13:40:01 -05:00
committed by l
parent 4b81cd2fc8
commit e3bf6bf352

View File

@@ -18,7 +18,7 @@ import { startDeltaChat } from "@deltachat/stdio-rpc-server";
import { C } from "@deltachat/jsonrpc-client";
async function main() {
const dc = await startDeltaChat("deltachat-data");
const dc = startDeltaChat("deltachat-data");
console.log(await dc.rpc.getSystemInfo());
dc.close()
}