mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
16 lines
181 B
JavaScript
16 lines
181 B
JavaScript
/*
|
|
Mocks for the ipfs-coord library
|
|
*/
|
|
|
|
class IPFSCoord {
|
|
async isReady () {
|
|
return true
|
|
}
|
|
|
|
async start () {}
|
|
|
|
async subscribeToChat() {}
|
|
}
|
|
|
|
export default IPFSCoord;
|