mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 17:12: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;
|