*Add init method
This commit is contained in:
parent
ebe2a18d91
commit
4359c590ba
|
@ -28,9 +28,10 @@ export class SwarmClient extends Client {
|
||||||
|
|
||||||
return createSocket(resp.id);
|
return createSocket(resp.id);
|
||||||
}
|
}
|
||||||
|
async init(): Promise<ErrTuple> {
|
||||||
|
return this.callModuleReturn("init", { swarm: this.swarm });
|
||||||
|
}
|
||||||
async ready(): Promise<ErrTuple> {
|
async ready(): Promise<ErrTuple> {
|
||||||
const dht = !this.useDefaultSwarm ? this.id : undefined;
|
|
||||||
return this.callModuleReturn("ready", { swarm: this.swarm });
|
return this.callModuleReturn("ready", { swarm: this.swarm });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue