Adding rpc directory

This commit is contained in:
Chris Troutner
2021-03-30 09:33:26 -07:00
parent 5af249a9eb
commit d2c8ea4e1e
2 changed files with 22 additions and 0 deletions
+11
View File
@@ -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
+11
View File
@@ -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