Files
aqua-playground/src/complex.ts

7 lines
205 B
TypeScript
Raw Normal View History

import {FluenceClient} from "@fluencelabs/fluence";
import {doStuff} from "./compiled/complex";
export async function complexCall(client: FluenceClient) {
await doStuff(client, client.relayPeerId!)
2021-04-15 12:45:18 +03:00
}