2021-07-06 17:17:26 -07:00
|
|
|
/*
|
|
|
|
|
Mocks for the Adapter library.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const ipfs = {
|
|
|
|
|
ipfsAdapter: {
|
|
|
|
|
ipfs: {}
|
|
|
|
|
},
|
|
|
|
|
ipfsCoordAdapter: {
|
|
|
|
|
ipfsCoord: {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-10 09:57:25 -07:00
|
|
|
const localdb = {
|
|
|
|
|
Users: class Users {
|
|
|
|
|
static findById () {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = { ipfs, localdb }
|