mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 17:12:03 -07:00
12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
/*
|
|
This is the parent class library for the RPC controller.
|
|
*/
|
|
|
|
class JSONRPC {
|
|
constructor (localConfig) {
|
|
console.log('instantiating JSONRPC')
|
|
}
|
|
}
|
|
|
|
module.exports = JSONRPC
|