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