diff --git a/src/rpc/index.js b/src/rpc/index.js new file mode 100644 index 0000000..d37dcce --- /dev/null +++ b/src/rpc/index.js @@ -0,0 +1,11 @@ +/* + This is the parent class library for the RPC controller. +*/ + +class JSONRPC { + constructor (localConfig) { + console.log('instantiating JSONRPC') + } +} + +module.exports = JSONRPC diff --git a/src/rpc/users/index.js b/src/rpc/users/index.js new file mode 100644 index 0000000..37b34f2 --- /dev/null +++ b/src/rpc/users/index.js @@ -0,0 +1,11 @@ +/* + This is the JSON RPC router for the users API +*/ + +class UsersRPC { + constructor (localConfig) { + console.log('instantiating UsersRPC') + } +} + +module.exports = UsersRPC