mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
15 lines
163 B
JavaScript
15 lines
163 B
JavaScript
/*
|
|
Mocks for the Adapter library.
|
|
*/
|
|
|
|
const ipfs = {
|
|
ipfsAdapter: {
|
|
ipfs: {}
|
|
},
|
|
ipfsCoordAdapter: {
|
|
ipfsCoord: {}
|
|
}
|
|
}
|
|
|
|
module.exports = { ipfs }
|